pub struct Workspace {
pub id: WorkspaceId,
pub created_at_ms: i64,
pub updated_at_ms: i64,
pub max_bytes: u64,
pub max_nodes: u64,
pub max_file_bytes: u64,
}Expand description
A created workspace and its configured limits.
Fields§
§id: WorkspaceIdThe stable identity of the workspace.
created_at_ms: i64The Unix timestamp in milliseconds when the workspace was created.
updated_at_ms: i64The Unix timestamp in milliseconds when the workspace was last updated.
max_bytes: u64The configured logical-byte quota.
max_nodes: u64The configured node-count quota.
max_file_bytes: u64The configured maximum size of one regular file.
Trait Implementations§
impl Copy for Workspace
impl Eq for Workspace
impl StructuralPartialEq for Workspace
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnsafeUnpin for Workspace
impl UnwindSafe for Workspace
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