Struct decthings_api::rpc::fs::ReadlinkParams
source · pub struct ReadlinkParams<'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 file.
Trait Implementations§
source§impl<'a> Clone for ReadlinkParams<'a>
impl<'a> Clone for ReadlinkParams<'a>
source§fn clone(&self) -> ReadlinkParams<'a>
fn clone(&self) -> ReadlinkParams<'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 ReadlinkParams<'a>
impl<'a> Debug for ReadlinkParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReadlinkParams<'a>
impl<'a> RefUnwindSafe for ReadlinkParams<'a>
impl<'a> Send for ReadlinkParams<'a>
impl<'a> Sync for ReadlinkParams<'a>
impl<'a> Unpin for ReadlinkParams<'a>
impl<'a> UnwindSafe for ReadlinkParams<'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