pub struct FsStatResponse {
pub exists: bool,
pub size: Option<u64>,
pub kind: Option<FsFileKind>,
}
Fields§
§exists: bool
§size: Option<u64>
§kind: Option<FsFileKind>
Trait Implementations§
Source§impl Default for FsStatResponse
impl Default for FsStatResponse
Source§fn default() -> FsStatResponse
fn default() -> FsStatResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FsStatResponse
impl RefUnwindSafe for FsStatResponse
impl Send for FsStatResponse
impl Sync for FsStatResponse
impl Unpin for FsStatResponse
impl UnwindSafe for FsStatResponse
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