pub struct GuestFilesystemCallRequest {Show 15 fields
pub operation: GuestFilesystemOperation,
pub path: String,
pub destination_path: Option<String>,
pub target: Option<String>,
pub content: Option<String>,
pub encoding: Option<RootFilesystemEntryEncoding>,
pub recursive: bool,
pub max_depth: Option<u32>,
pub mode: Option<u32>,
pub uid: Option<u32>,
pub gid: Option<u32>,
pub atime_ms: Option<u64>,
pub mtime_ms: Option<u64>,
pub len: Option<u64>,
pub offset: Option<u64>,
}Fields§
§operation: GuestFilesystemOperation§path: String§destination_path: Option<String>§target: Option<String>§content: Option<String>§encoding: Option<RootFilesystemEntryEncoding>§recursive: bool§max_depth: Option<u32>§mode: Option<u32>§uid: Option<u32>§gid: Option<u32>§atime_ms: Option<u64>§mtime_ms: Option<u64>§len: Option<u64>§offset: Option<u64>Trait Implementations§
Source§impl Clone for GuestFilesystemCallRequest
impl Clone for GuestFilesystemCallRequest
Source§fn clone(&self) -> GuestFilesystemCallRequest
fn clone(&self) -> GuestFilesystemCallRequest
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 GuestFilesystemCallRequest
impl Debug for GuestFilesystemCallRequest
Source§impl<'de> Deserialize<'de> for GuestFilesystemCallRequest
impl<'de> Deserialize<'de> for GuestFilesystemCallRequest
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 GuestFilesystemCallRequest
Source§impl Hash for GuestFilesystemCallRequest
impl Hash for GuestFilesystemCallRequest
Source§impl PartialEq for GuestFilesystemCallRequest
impl PartialEq for GuestFilesystemCallRequest
Source§fn eq(&self, other: &GuestFilesystemCallRequest) -> bool
fn eq(&self, other: &GuestFilesystemCallRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GuestFilesystemCallRequest
Auto Trait Implementations§
impl Freeze for GuestFilesystemCallRequest
impl RefUnwindSafe for GuestFilesystemCallRequest
impl Send for GuestFilesystemCallRequest
impl Sync for GuestFilesystemCallRequest
impl Unpin for GuestFilesystemCallRequest
impl UnsafeUnpin for GuestFilesystemCallRequest
impl UnwindSafe for GuestFilesystemCallRequest
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