pub struct ListWorkspaceFilesResponseFile {
pub file_id: String,
pub path: String,
pub filename: String,
pub mime_type: String,
pub size_bytes: i64,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub etag: Option<String>,
}Expand description
ListWorkspaceFilesResponseFile model.
Fields§
§file_id: String§path: String§filename: String§mime_type: String§size_bytes: i64§created_at: Option<String>§updated_at: Option<String>When this file was last written. Absent on records written before the field existed.
etag: Option<String>Opaque version of this file’s content. Compare two listings to find what a run changed
without reading any bytes, and send it back as If-Match on a write to refuse an overwrite
of something you have not seen. Absent on records written before the field existed — treat
absence as UNKNOWN, not as unchanged.
Trait Implementations§
Source§impl Clone for ListWorkspaceFilesResponseFile
impl Clone for ListWorkspaceFilesResponseFile
Source§fn clone(&self) -> ListWorkspaceFilesResponseFile
fn clone(&self) -> ListWorkspaceFilesResponseFile
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 ListWorkspaceFilesResponseFile
impl Default for ListWorkspaceFilesResponseFile
Source§fn default() -> ListWorkspaceFilesResponseFile
fn default() -> ListWorkspaceFilesResponseFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkspaceFilesResponseFile
impl<'de> Deserialize<'de> for ListWorkspaceFilesResponseFile
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
impl StructuralPartialEq for ListWorkspaceFilesResponseFile
Auto Trait Implementations§
impl Freeze for ListWorkspaceFilesResponseFile
impl RefUnwindSafe for ListWorkspaceFilesResponseFile
impl Send for ListWorkspaceFilesResponseFile
impl Sync for ListWorkspaceFilesResponseFile
impl Unpin for ListWorkspaceFilesResponseFile
impl UnsafeUnpin for ListWorkspaceFilesResponseFile
impl UnwindSafe for ListWorkspaceFilesResponseFile
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