pub struct WorkspaceCache {
pub team_id: String,
pub updated_at: u64,
pub users: HashMap<String, CachedUser>,
}Expand description
Workspace-specific user cache
Fields§
§team_id: String§updated_at: u64§users: HashMap<String, CachedUser>Trait Implementations§
Source§impl Clone for WorkspaceCache
impl Clone for WorkspaceCache
Source§fn clone(&self) -> WorkspaceCache
fn clone(&self) -> WorkspaceCache
Returns a duplicate of the value. Read more
1.0.0 · 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 WorkspaceCache
impl Debug for WorkspaceCache
Source§impl<'de> Deserialize<'de> for WorkspaceCache
impl<'de> Deserialize<'de> for WorkspaceCache
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
Source§impl PartialEq for WorkspaceCache
impl PartialEq for WorkspaceCache
Source§impl Serialize for WorkspaceCache
impl Serialize for WorkspaceCache
impl StructuralPartialEq for WorkspaceCache
Auto Trait Implementations§
impl Freeze for WorkspaceCache
impl RefUnwindSafe for WorkspaceCache
impl Send for WorkspaceCache
impl Sync for WorkspaceCache
impl Unpin for WorkspaceCache
impl UnwindSafe for WorkspaceCache
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