pub struct MemoryWorkspace {
pub id: String,
pub name: String,
pub contexts: Vec<MemoryContext>,
pub created_at: u64,
}Expand description
A multi-memory workspace.
Fields§
§id: String§name: String§contexts: Vec<MemoryContext>§created_at: u64Auto Trait Implementations§
impl Freeze for MemoryWorkspace
impl RefUnwindSafe for MemoryWorkspace
impl Send for MemoryWorkspace
impl Sync for MemoryWorkspace
impl Unpin for MemoryWorkspace
impl UnsafeUnpin for MemoryWorkspace
impl UnwindSafe for MemoryWorkspace
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