pub struct Args {Show 14 fields
pub command: Vec<String>,
pub watch: Vec<String>,
pub ext: Option<String>,
pub pattern: Vec<String>,
pub ignore: Vec<String>,
pub debounce: u64,
pub initial: bool,
pub clear: bool,
pub restart: bool,
pub stats: bool,
pub stats_interval: u64,
pub bench: bool,
pub config: Option<String>,
pub fast: bool,
}Expand description
Command line arguments structure
Fields§
§command: Vec<String>§watch: Vec<String>§ext: Option<String>§pattern: Vec<String>§ignore: Vec<String>§debounce: u64§initial: bool§clear: bool§restart: bool§stats: bool§stats_interval: u64§bench: bool§config: Option<String>§fast: boolTrait Implementations§
impl StructuralPartialEq for Args
Auto Trait Implementations§
impl Freeze for Args
impl RefUnwindSafe for Args
impl Send for Args
impl Sync for Args
impl Unpin for Args
impl UnwindSafe for Args
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more