pub struct WorkroomSummary {
pub id: WorkroomId,
pub title: String,
pub updated_at: DateTime<Utc>,
pub active_threads: usize,
}Expand description
Summary projection of a workroom for list/inbox views.
Fields§
§id: WorkroomId§title: String§updated_at: DateTime<Utc>§active_threads: usizeTrait Implementations§
Source§impl Clone for WorkroomSummary
impl Clone for WorkroomSummary
Source§fn clone(&self) -> WorkroomSummary
fn clone(&self) -> WorkroomSummary
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 WorkroomSummary
impl Debug for WorkroomSummary
Source§impl<'de> Deserialize<'de> for WorkroomSummary
impl<'de> Deserialize<'de> for WorkroomSummary
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 WorkroomSummary
impl RefUnwindSafe for WorkroomSummary
impl Send for WorkroomSummary
impl Sync for WorkroomSummary
impl Unpin for WorkroomSummary
impl UnsafeUnpin for WorkroomSummary
impl UnwindSafe for WorkroomSummary
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