pub struct NamespaceEntry {
pub source: PathBuf,
pub target: PathBuf,
pub bind_mode: BindMode,
pub remote_node: Option<String>,
}Expand description
Entry in the namespace representing a bind operation
Fieldsยง
ยงsource: PathBufSource path for the bind operation
target: PathBufTarget path where the source is bound
bind_mode: BindModeMode of the bind operation
remote_node: Option<String>Optional remote node identifier
Trait Implementationsยง
Sourceยงimpl Clone for NamespaceEntry
impl Clone for NamespaceEntry
Sourceยงfn clone(&self) -> NamespaceEntry
fn clone(&self) -> NamespaceEntry
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 moreAuto Trait Implementationsยง
impl Freeze for NamespaceEntry
impl RefUnwindSafe for NamespaceEntry
impl Send for NamespaceEntry
impl Sync for NamespaceEntry
impl Unpin for NamespaceEntry
impl UnwindSafe for NamespaceEntry
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