pub struct WorkspaceContext {
pub path: String,
pub label: Option<String>,
pub role: WorkspaceRole,
pub message_count: usize,
pub channel_count: usize,
pub agent_count: usize,
}Expand description
A single loaded store context within a workspace.
Fields§
§path: StringPath to the .acomm file.
label: Option<String>Optional human-readable label.
role: WorkspaceRoleRole this context plays in the workspace.
message_count: usizeNumber of messages in the store.
channel_count: usizeNumber of channels in the store.
agent_count: usizeNumber of unique agents (participants + trust-level keys).
Trait Implementations§
Source§impl Clone for WorkspaceContext
impl Clone for WorkspaceContext
Source§fn clone(&self) -> WorkspaceContext
fn clone(&self) -> WorkspaceContext
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 WorkspaceContext
impl Debug for WorkspaceContext
Source§impl<'de> Deserialize<'de> for WorkspaceContext
impl<'de> Deserialize<'de> for WorkspaceContext
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
Auto Trait Implementations§
impl Freeze for WorkspaceContext
impl RefUnwindSafe for WorkspaceContext
impl Send for WorkspaceContext
impl Sync for WorkspaceContext
impl Unpin for WorkspaceContext
impl UnsafeUnpin for WorkspaceContext
impl UnwindSafe for WorkspaceContext
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