pub struct SessionWorkspacesStatFileResult {
pub birthtime_ms: f64,
pub is_directory: bool,
pub is_file: bool,
pub mtime_ms: f64,
pub size: f64,
}Expand description
Filesystem metadata for a path in the session workspace files directory.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§birthtime_ms: f64Creation time in Unix epoch milliseconds
is_directory: boolWhether the path identifies a directory
is_file: boolWhether the path identifies a regular file
mtime_ms: f64Last modification time in Unix epoch milliseconds
size: f64Size in bytes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionWorkspacesStatFileResult
impl<'de> Deserialize<'de> for SessionWorkspacesStatFileResult
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
Auto Trait Implementations§
impl Freeze for SessionWorkspacesStatFileResult
impl RefUnwindSafe for SessionWorkspacesStatFileResult
impl Send for SessionWorkspacesStatFileResult
impl Sync for SessionWorkspacesStatFileResult
impl Unpin for SessionWorkspacesStatFileResult
impl UnsafeUnpin for SessionWorkspacesStatFileResult
impl UnwindSafe for SessionWorkspacesStatFileResult
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