pub struct LocateFile {
pub location: Location,
pub dir: Option<PathBuf>,
pub filename: PathBuf,
}Fields§
§location: Location§dir: Option<PathBuf>§filename: PathBufTrait Implementations§
Source§impl Clone for LocateFile
impl Clone for LocateFile
Source§fn clone(&self) -> LocateFile
fn clone(&self) -> LocateFile
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 LocateFile
impl Debug for LocateFile
Source§impl From<LocateFile> for Request
Available on crate feature filesystem-client only.
impl From<LocateFile> for Request
Available on crate feature
filesystem-client only.Source§fn from(request: LocateFile) -> Self
fn from(request: LocateFile) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LocateFile
impl PartialEq for LocateFile
Source§fn eq(&self, other: &LocateFile) -> bool
fn eq(&self, other: &LocateFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RequestVariant for LocateFile
Available on crate feature filesystem-client only.
impl RequestVariant for LocateFile
Available on crate feature
filesystem-client only.type Reply = LocateFile
Source§impl TryFrom<Request> for LocateFile
Available on crate feature filesystem-client only.
impl TryFrom<Request> for LocateFile
Available on crate feature
filesystem-client only.impl Eq for LocateFile
impl StructuralPartialEq for LocateFile
Auto Trait Implementations§
impl Freeze for LocateFile
impl RefUnwindSafe for LocateFile
impl Send for LocateFile
impl Sync for LocateFile
impl Unpin for LocateFile
impl UnsafeUnpin for LocateFile
impl UnwindSafe for LocateFile
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