pub struct SwarmRecord {
pub id: String,
pub title: String,
pub leader_session_id: String,
pub members: Vec<SwarmMemberRecord>,
pub messages: Vec<SwarmMessageRecord>,
pub updated_at_ms: i64,
}Expand description
One gateway-managed group of ordinary visible sessions.
Fields§
§id: String§title: String§leader_session_id: String§members: Vec<SwarmMemberRecord>§messages: Vec<SwarmMessageRecord>§updated_at_ms: i64Trait Implementations§
Source§impl Clone for SwarmRecord
impl Clone for SwarmRecord
Source§fn clone(&self) -> SwarmRecord
fn clone(&self) -> SwarmRecord
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 SwarmRecord
impl Debug for SwarmRecord
Source§impl<'de> Deserialize<'de> for SwarmRecord
impl<'de> Deserialize<'de> for SwarmRecord
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
impl Eq for SwarmRecord
Source§impl PartialEq for SwarmRecord
impl PartialEq for SwarmRecord
Source§impl Serialize for SwarmRecord
impl Serialize for SwarmRecord
impl StructuralPartialEq for SwarmRecord
Auto Trait Implementations§
impl Freeze for SwarmRecord
impl RefUnwindSafe for SwarmRecord
impl Send for SwarmRecord
impl Sync for SwarmRecord
impl Unpin for SwarmRecord
impl UnsafeUnpin for SwarmRecord
impl UnwindSafe for SwarmRecord
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