pub struct EnrollmentEnvelope {
pub conversation_id: ConversationId,
pub enrollment_token: EnrollmentToken,
}Expand description
Enrollment response common envelope.
Fields§
§conversation_id: ConversationIdConversation from the request.
enrollment_token: EnrollmentTokenEnrollment token from the request.
Trait Implementations§
Source§impl Clone for EnrollmentEnvelope
impl Clone for EnrollmentEnvelope
Source§fn clone(&self) -> EnrollmentEnvelope
fn clone(&self) -> EnrollmentEnvelope
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 EnrollmentEnvelope
impl Debug for EnrollmentEnvelope
impl Eq for EnrollmentEnvelope
Source§impl PartialEq for EnrollmentEnvelope
impl PartialEq for EnrollmentEnvelope
impl StructuralPartialEq for EnrollmentEnvelope
Auto Trait Implementations§
impl Freeze for EnrollmentEnvelope
impl RefUnwindSafe for EnrollmentEnvelope
impl Send for EnrollmentEnvelope
impl Sync for EnrollmentEnvelope
impl Unpin for EnrollmentEnvelope
impl UnsafeUnpin for EnrollmentEnvelope
impl UnwindSafe for EnrollmentEnvelope
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