pub struct VectorTreeEntry {
pub path: String,
pub bytes: Vec<u8>,
pub symlink: bool,
}Fields§
§path: String§bytes: Vec<u8>§symlink: boolTrait Implementations§
Source§impl Clone for VectorTreeEntry
impl Clone for VectorTreeEntry
Source§fn clone(&self) -> VectorTreeEntry
fn clone(&self) -> VectorTreeEntry
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 VectorTreeEntry
impl Debug for VectorTreeEntry
impl Eq for VectorTreeEntry
Source§impl PartialEq for VectorTreeEntry
impl PartialEq for VectorTreeEntry
impl StructuralPartialEq for VectorTreeEntry
Auto Trait Implementations§
impl Freeze for VectorTreeEntry
impl RefUnwindSafe for VectorTreeEntry
impl Send for VectorTreeEntry
impl Sync for VectorTreeEntry
impl Unpin for VectorTreeEntry
impl UnsafeUnpin for VectorTreeEntry
impl UnwindSafe for VectorTreeEntry
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