pub struct FsGetMetadataResponse {
pub created_at_ms: i64,
pub is_directory: bool,
pub is_file: bool,
pub is_symlink: bool,
pub modified_at_ms: i64,
}Fields§
§created_at_ms: i64§is_directory: bool§is_file: bool§is_symlink: bool§modified_at_ms: i64Trait Implementations§
Source§impl Clone for FsGetMetadataResponse
impl Clone for FsGetMetadataResponse
Source§fn clone(&self) -> FsGetMetadataResponse
fn clone(&self) -> FsGetMetadataResponse
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 FsGetMetadataResponse
impl Debug for FsGetMetadataResponse
Source§impl<'de> Deserialize<'de> for FsGetMetadataResponse
impl<'de> Deserialize<'de> for FsGetMetadataResponse
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
Source§impl PartialEq for FsGetMetadataResponse
impl PartialEq for FsGetMetadataResponse
Source§fn eq(&self, other: &FsGetMetadataResponse) -> bool
fn eq(&self, other: &FsGetMetadataResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FsGetMetadataResponse
impl Serialize for FsGetMetadataResponse
impl StructuralPartialEq for FsGetMetadataResponse
Auto Trait Implementations§
impl Freeze for FsGetMetadataResponse
impl RefUnwindSafe for FsGetMetadataResponse
impl Send for FsGetMetadataResponse
impl Sync for FsGetMetadataResponse
impl Unpin for FsGetMetadataResponse
impl UnsafeUnpin for FsGetMetadataResponse
impl UnwindSafe for FsGetMetadataResponse
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