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 Clone for SessionWorkspacesStatFileResult
impl Clone for SessionWorkspacesStatFileResult
Source§fn clone(&self) -> SessionWorkspacesStatFileResult
fn clone(&self) -> SessionWorkspacesStatFileResult
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 Default for SessionWorkspacesStatFileResult
impl Default for SessionWorkspacesStatFileResult
Source§fn default() -> SessionWorkspacesStatFileResult
fn default() -> SessionWorkspacesStatFileResult
Returns the “default value” for a type. Read more
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