pub struct Workspace {Show 13 fields
pub file_count: Option<i64>,
pub total_size_bytes: Option<i64>,
pub workspace_id: String,
pub tenant_id: String,
pub owner_type: Option<WorkspaceOwnerType>,
pub owner_id: Option<String>,
pub name: String,
pub shared_with: Option<Vec<String>>,
pub assigned_agents: Vec<String>,
pub assigned_teams: Option<Vec<String>>,
pub assigned_companies: Option<Vec<String>>,
pub created_at: String,
pub updated_at: Option<String>,
}Expand description
Workspace model.
Fields§
§file_count: Option<i64>§total_size_bytes: Option<i64>§workspace_id: String§tenant_id: String§owner_type: Option<WorkspaceOwnerType>§owner_id: Option<String>§name: String§assigned_agents: Vec<String>§assigned_teams: Option<Vec<String>>§assigned_companies: Option<Vec<String>>§created_at: String§updated_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Workspace
impl<'de> Deserialize<'de> for Workspace
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 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