pub struct SwcCliOptions {
pub out_dir: PathBuf,
pub filenames: Vec<PathBuf>,
pub sync: bool,
pub extensions: Vec<String>,
pub copy_files: bool,
pub include_dotfiles: bool,
pub quiet: bool,
pub watch: bool,
pub strip_leading_paths: bool,
}Fields§
§out_dir: PathBuf§filenames: Vec<PathBuf>§sync: bool§extensions: Vec<String>§copy_files: bool§include_dotfiles: bool§quiet: bool§watch: bool§strip_leading_paths: boolTrait Implementations§
Source§impl Clone for SwcCliOptions
impl Clone for SwcCliOptions
Source§fn clone(&self) -> SwcCliOptions
fn clone(&self) -> SwcCliOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SwcCliOptions
impl Debug for SwcCliOptions
Source§impl PartialEq for SwcCliOptions
impl PartialEq for SwcCliOptions
Source§fn eq(&self, other: &SwcCliOptions) -> bool
fn eq(&self, other: &SwcCliOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SwcCliOptions
impl StructuralPartialEq for SwcCliOptions
Auto Trait Implementations§
impl Freeze for SwcCliOptions
impl RefUnwindSafe for SwcCliOptions
impl Send for SwcCliOptions
impl Sync for SwcCliOptions
impl Unpin for SwcCliOptions
impl UnsafeUnpin for SwcCliOptions
impl UnwindSafe for SwcCliOptions
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.