pub struct EnrollmentKnown {
pub conversation_id: ConversationId,
pub token: EnrollmentToken,
pub participant_id: ParticipantId,
pub current_generation: Generation,
}Expand description
Enrollment token maps to a known live participant.
Fields§
§conversation_id: ConversationIdConversation from the request.
token: EnrollmentTokenEnrollment token.
participant_id: ParticipantIdMapped participant.
current_generation: GenerationCurrent live generation.
Trait Implementations§
Source§impl Clone for EnrollmentKnown
impl Clone for EnrollmentKnown
Source§fn clone(&self) -> EnrollmentKnown
fn clone(&self) -> EnrollmentKnown
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 EnrollmentKnown
impl Debug for EnrollmentKnown
impl Eq for EnrollmentKnown
Source§impl PartialEq for EnrollmentKnown
impl PartialEq for EnrollmentKnown
impl StructuralPartialEq for EnrollmentKnown
Auto Trait Implementations§
impl Freeze for EnrollmentKnown
impl RefUnwindSafe for EnrollmentKnown
impl Send for EnrollmentKnown
impl Sync for EnrollmentKnown
impl Unpin for EnrollmentKnown
impl UnsafeUnpin for EnrollmentKnown
impl UnwindSafe for EnrollmentKnown
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