pub struct GuestDirEntry {
pub name: String,
pub path: String,
pub is_directory: bool,
pub is_symbolic_link: bool,
pub size: u64,
}Fields§
§name: String§path: String§is_directory: bool§is_symbolic_link: bool§size: u64Trait Implementations§
Source§impl Clone for GuestDirEntry
impl Clone for GuestDirEntry
Source§fn clone(&self) -> GuestDirEntry
fn clone(&self) -> GuestDirEntry
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 GuestDirEntry
impl Debug for GuestDirEntry
Source§impl<'de> Deserialize<'de> for GuestDirEntry
impl<'de> Deserialize<'de> for GuestDirEntry
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
impl Eq for GuestDirEntry
Source§impl Hash for GuestDirEntry
impl Hash for GuestDirEntry
Source§impl PartialEq for GuestDirEntry
impl PartialEq for GuestDirEntry
Source§fn eq(&self, other: &GuestDirEntry) -> bool
fn eq(&self, other: &GuestDirEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GuestDirEntry
impl Serialize for GuestDirEntry
impl StructuralPartialEq for GuestDirEntry
Auto Trait Implementations§
impl Freeze for GuestDirEntry
impl RefUnwindSafe for GuestDirEntry
impl Send for GuestDirEntry
impl Sync for GuestDirEntry
impl Unpin for GuestDirEntry
impl UnsafeUnpin for GuestDirEntry
impl UnwindSafe for GuestDirEntry
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