pub struct LeftRoom {
pub room: Room,
pub channel_id: Option<ChannelId>,
pub channel_members: Vec<UserId>,
pub left_projects: HashMap<ProjectId, LeftProject>,
pub canceled_calls_to_user_ids: Vec<UserId>,
pub deleted: bool,
}
Fields§
§room: Room
§channel_id: Option<ChannelId>
§channel_members: Vec<UserId>
§left_projects: HashMap<ProjectId, LeftProject>
§canceled_calls_to_user_ids: Vec<UserId>
§deleted: bool
Auto Trait Implementations§
impl RefUnwindSafe for LeftRoom
impl Send for LeftRoom
impl Sync for LeftRoom
impl Unpin for LeftRoom
impl UnwindSafe for LeftRoom
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