pub struct V2FileInfo {
pub path: Vec<String>,
pub attr: V2FileAttr,
}Expand description
Flattened file info from a v2 file tree.
Fields§
§path: Vec<String>Path components from the tree root to this file.
attr: V2FileAttrFile attributes.
Trait Implementations§
Source§impl Clone for V2FileInfo
impl Clone for V2FileInfo
Source§fn clone(&self) -> V2FileInfo
fn clone(&self) -> V2FileInfo
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 V2FileInfo
impl Debug for V2FileInfo
Source§impl PartialEq for V2FileInfo
impl PartialEq for V2FileInfo
Source§fn eq(&self, other: &V2FileInfo) -> bool
fn eq(&self, other: &V2FileInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for V2FileInfo
impl StructuralPartialEq for V2FileInfo
Auto Trait Implementations§
impl Freeze for V2FileInfo
impl RefUnwindSafe for V2FileInfo
impl Send for V2FileInfo
impl Sync for V2FileInfo
impl Unpin for V2FileInfo
impl UnsafeUnpin for V2FileInfo
impl UnwindSafe for V2FileInfo
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