pub enum AuditParticipantResult {
Ok,
ConferenceDoesNotExist,
Unknown(u32),
}Expand description
Outcome returned by a conference-participant audit.
Variants§
Ok
ConferenceDoesNotExist
Unknown(u32)
Preserves an SCCP numeric value not recognized by this crate. Allows newer or vendor-specific values to round-trip without loss.
Implementations§
Trait Implementations§
Source§impl Clone for AuditParticipantResult
impl Clone for AuditParticipantResult
Source§fn clone(&self) -> AuditParticipantResult
fn clone(&self) -> AuditParticipantResult
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 moreimpl Copy for AuditParticipantResult
Source§impl Debug for AuditParticipantResult
impl Debug for AuditParticipantResult
impl Eq for AuditParticipantResult
Source§impl From<AuditParticipantResult> for u32
impl From<AuditParticipantResult> for u32
Source§fn from(value: AuditParticipantResult) -> Self
fn from(value: AuditParticipantResult) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AuditParticipantResult
impl From<u32> for AuditParticipantResult
Source§impl Hash for AuditParticipantResult
impl Hash for AuditParticipantResult
Source§impl PartialEq for AuditParticipantResult
impl PartialEq for AuditParticipantResult
impl StructuralPartialEq for AuditParticipantResult
Auto Trait Implementations§
impl Freeze for AuditParticipantResult
impl RefUnwindSafe for AuditParticipantResult
impl Send for AuditParticipantResult
impl Sync for AuditParticipantResult
impl Unpin for AuditParticipantResult
impl UnsafeUnpin for AuditParticipantResult
impl UnwindSafe for AuditParticipantResult
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