pub struct Workspace {
pub id: WorkspaceId,
pub name: String,
pub owner_user_id: UserId,
pub kdf_salt: Vec<u8>,
pub m_cost_kib: u32,
pub t_cost: u32,
pub p_cost: u32,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
Workspace record
Fields§
§id: WorkspaceId§name: String§owner_user_id: UserId§kdf_salt: Vec<u8>§m_cost_kib: u32§t_cost: u32§p_cost: u32§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin 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