pub struct AuditParticipantResponse {
pub result: AuditParticipantResult,
pub last: u32,
pub conference_id: ConferenceId,
pub number_of_entries: u32,
pub participant_entries: Vec<u8>,
}Expand description
Participant audit entry bytes have an opaque schema. The typed envelope preserves them losslessly while enforcing the aggregate wire bound.
Fields§
§result: AuditParticipantResult§last: u32§conference_id: ConferenceId§number_of_entries: u32Declared entry count retained separately from the opaque entry bytes.
participant_entries: Vec<u8>Opaque participant records retained in their received order.
Trait Implementations§
Source§impl Clone for AuditParticipantResponse
impl Clone for AuditParticipantResponse
Source§fn clone(&self) -> AuditParticipantResponse
fn clone(&self) -> AuditParticipantResponse
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 AuditParticipantResponse
impl Debug for AuditParticipantResponse
impl Eq for AuditParticipantResponse
Source§impl PartialEq for AuditParticipantResponse
impl PartialEq for AuditParticipantResponse
impl StructuralPartialEq for AuditParticipantResponse
Auto Trait Implementations§
impl Freeze for AuditParticipantResponse
impl RefUnwindSafe for AuditParticipantResponse
impl Send for AuditParticipantResponse
impl Sync for AuditParticipantResponse
impl Unpin for AuditParticipantResponse
impl UnsafeUnpin for AuditParticipantResponse
impl UnwindSafe for AuditParticipantResponse
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