Struct decthings_api::rpc::fs::ReaddirParams
source · pub struct ReaddirParams<'a> {
pub model_id: &'a str,
pub snapshot_id: Option<&'a str>,
pub inode: u64,
}
Fields§
§model_id: &'a str
The model’s id.
snapshot_id: Option<&'a str>
If provided, the filesystem of the snapshot will be used. Otherwise, the filesystem of the model will be used.
inode: u64
Inode number of directory.
Trait Implementations§
source§impl<'a> Clone for ReaddirParams<'a>
impl<'a> Clone for ReaddirParams<'a>
source§fn clone(&self) -> ReaddirParams<'a>
fn clone(&self) -> ReaddirParams<'a>
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<'a> Debug for ReaddirParams<'a>
impl<'a> Debug for ReaddirParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReaddirParams<'a>
impl<'a> RefUnwindSafe for ReaddirParams<'a>
impl<'a> Send for ReaddirParams<'a>
impl<'a> Sync for ReaddirParams<'a>
impl<'a> Unpin for ReaddirParams<'a>
impl<'a> UnwindSafe for ReaddirParams<'a>
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