pub struct FromGitHookOptions {
pub poll_ms: u64,
pub include: Vec<String>,
pub exclude: Vec<String>,
pub max_consecutive_errors: usize,
}Expand description
FromGitHookOptions data container.
Fields§
§poll_ms: u64poll_ms field for poll ms.
include: Vec<String>include field for include.
exclude: Vec<String>exclude field for exclude.
max_consecutive_errors: usizemax_consecutive_errors field for max consecutive errors.
Trait Implementations§
Source§impl Clone for FromGitHookOptions
impl Clone for FromGitHookOptions
Source§fn clone(&self) -> FromGitHookOptions
fn clone(&self) -> FromGitHookOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FromGitHookOptions
impl Debug for FromGitHookOptions
Auto Trait Implementations§
impl Freeze for FromGitHookOptions
impl RefUnwindSafe for FromGitHookOptions
impl Send for FromGitHookOptions
impl Sync for FromGitHookOptions
impl Unpin for FromGitHookOptions
impl UnsafeUnpin for FromGitHookOptions
impl UnwindSafe for FromGitHookOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more