pub struct Participants {
pub groups: Option<Vec<GroupMetadata>>,
pub users: Option<Vec<UserMetadata>>,
}
Expand description
Describes the users or user groups.
Fields§
§groups: Option<Vec<GroupMetadata>>
The list of user groups.
users: Option<Vec<UserMetadata>>
The list of users.
Trait Implementations§
Source§impl Clone for Participants
impl Clone for Participants
Source§fn clone(&self) -> Participants
fn clone(&self) -> Participants
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 Participants
impl Debug for Participants
Source§impl Default for Participants
impl Default for Participants
Source§fn default() -> Participants
fn default() -> Participants
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Participants
impl<'de> Deserialize<'de> for Participants
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 Participants
impl PartialEq for Participants
impl StructuralPartialEq for Participants
Auto Trait Implementations§
impl Freeze for Participants
impl RefUnwindSafe for Participants
impl Send for Participants
impl Sync for Participants
impl Unpin for Participants
impl UnwindSafe for Participants
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