pub struct WorkspaceFileVersion {
pub file_id: String,
pub tenant_id: String,
pub workspace_id: String,
pub path: String,
pub parent_path: String,
pub filename: String,
pub mime_type: String,
pub size_bytes: i64,
pub created_at: String,
}Expand description
One kept version of a workspace file. Keys as served 2026-09-10.
Fields§
§file_id: String§tenant_id: String§workspace_id: String§path: String§parent_path: String§filename: String§mime_type: String§size_bytes: i64§created_at: StringTrait Implementations§
Source§impl Clone for WorkspaceFileVersion
impl Clone for WorkspaceFileVersion
Source§fn clone(&self) -> WorkspaceFileVersion
fn clone(&self) -> WorkspaceFileVersion
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 WorkspaceFileVersion
impl Debug for WorkspaceFileVersion
Source§impl Default for WorkspaceFileVersion
impl Default for WorkspaceFileVersion
Source§fn default() -> WorkspaceFileVersion
fn default() -> WorkspaceFileVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkspaceFileVersion
impl<'de> Deserialize<'de> for WorkspaceFileVersion
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 WorkspaceFileVersion
impl PartialEq for WorkspaceFileVersion
Source§impl Serialize for WorkspaceFileVersion
impl Serialize for WorkspaceFileVersion
impl StructuralPartialEq for WorkspaceFileVersion
Auto Trait Implementations§
impl Freeze for WorkspaceFileVersion
impl RefUnwindSafe for WorkspaceFileVersion
impl Send for WorkspaceFileVersion
impl Sync for WorkspaceFileVersion
impl Unpin for WorkspaceFileVersion
impl UnsafeUnpin for WorkspaceFileVersion
impl UnwindSafe for WorkspaceFileVersion
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