Struct decthings_api::rpc::fs::ReaddirEntry
source · pub struct ReaddirEntry {
pub basename: Vec<u8>,
pub filetype: u32,
pub ino: u64,
}
Fields§
§basename: Vec<u8>
Filename
filetype: u32
File mode
ino: u64
Inode number
Trait Implementations§
source§impl Clone for ReaddirEntry
impl Clone for ReaddirEntry
source§fn clone(&self) -> ReaddirEntry
fn clone(&self) -> ReaddirEntry
Returns a copy 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 moresource§impl Debug for ReaddirEntry
impl Debug for ReaddirEntry
source§impl<'de> Deserialize<'de> for ReaddirEntry
impl<'de> Deserialize<'de> for ReaddirEntry
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
Auto Trait Implementations§
impl Freeze for ReaddirEntry
impl RefUnwindSafe for ReaddirEntry
impl Send for ReaddirEntry
impl Sync for ReaddirEntry
impl Unpin for ReaddirEntry
impl UnwindSafe for ReaddirEntry
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