pub struct ParticipantInfo {
pub name: Option<String>,
pub url: Option<String>,
pub role: ParticipantRole,
pub status: ParticipantStatus,
pub is_current_user: bool,
}Expand description
A participant (attendee) on an event or reminder.
Fields§
§name: Option<String>§url: Option<String>§role: ParticipantRole§status: ParticipantStatus§is_current_user: boolTrait Implementations§
Source§impl Clone for ParticipantInfo
impl Clone for ParticipantInfo
Source§fn clone(&self) -> ParticipantInfo
fn clone(&self) -> ParticipantInfo
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 moreAuto Trait Implementations§
impl Freeze for ParticipantInfo
impl RefUnwindSafe for ParticipantInfo
impl Send for ParticipantInfo
impl Sync for ParticipantInfo
impl Unpin for ParticipantInfo
impl UnsafeUnpin for ParticipantInfo
impl UnwindSafe for ParticipantInfo
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