pub struct DirectoryRule {
pub inside_path: PathBuf,
pub outside_path: Option<PathBuf>,
pub options: DirectoryOptions,
}Expand description
Directory binding rule.
Fields§
§inside_path: PathBuf§outside_path: Option<PathBuf>§options: DirectoryOptionsTrait Implementations§
Source§impl Clone for DirectoryRule
impl Clone for DirectoryRule
Source§fn clone(&self) -> DirectoryRule
fn clone(&self) -> DirectoryRule
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 DirectoryRule
impl Debug for DirectoryRule
Source§impl<'de> Deserialize<'de> for DirectoryRule
impl<'de> Deserialize<'de> for DirectoryRule
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DirectoryRule
impl RefUnwindSafe for DirectoryRule
impl Send for DirectoryRule
impl Sync for DirectoryRule
impl Unpin for DirectoryRule
impl UnsafeUnpin for DirectoryRule
impl UnwindSafe for DirectoryRule
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