pub struct PathConfig {
pub source: PathBuf,
pub output: PathBuf,
pub icon: Option<PathBuf>,
pub includes: Vec<String>,
pub excludes: Vec<String>,
}Fields§
§source: PathBuf§output: PathBuf§icon: Option<PathBuf>§includes: Vec<String>§excludes: Vec<String>Trait Implementations§
Source§impl Clone for PathConfig
impl Clone for PathConfig
Source§fn clone(&self) -> PathConfig
fn clone(&self) -> PathConfig
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 PathConfig
impl Debug for PathConfig
impl Eq for PathConfig
Source§impl PartialEq for PathConfig
impl PartialEq for PathConfig
Source§fn eq(&self, other: &PathConfig) -> bool
fn eq(&self, other: &PathConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PathConfig
Auto Trait Implementations§
impl Freeze for PathConfig
impl RefUnwindSafe for PathConfig
impl Send for PathConfig
impl Sync for PathConfig
impl Unpin for PathConfig
impl UnsafeUnpin for PathConfig
impl UnwindSafe for PathConfig
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