pub enum AddParticipantResult {
Ok,
ResourceNotAvailable,
ConferenceDoesNotExist,
DuplicateCallReference,
SystemError,
Unknown(u32),
}Expand description
Outcome returned when attaching a conference participant.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AddParticipantResult
impl Clone for AddParticipantResult
Source§fn clone(&self) -> AddParticipantResult
fn clone(&self) -> AddParticipantResult
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 AddParticipantResult
Source§impl Debug for AddParticipantResult
impl Debug for AddParticipantResult
impl Eq for AddParticipantResult
Source§impl From<AddParticipantResult> for u32
impl From<AddParticipantResult> for u32
Source§fn from(value: AddParticipantResult) -> Self
fn from(value: AddParticipantResult) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AddParticipantResult
impl From<u32> for AddParticipantResult
Source§impl Hash for AddParticipantResult
impl Hash for AddParticipantResult
Source§impl PartialEq for AddParticipantResult
impl PartialEq for AddParticipantResult
impl StructuralPartialEq for AddParticipantResult
Auto Trait Implementations§
impl Freeze for AddParticipantResult
impl RefUnwindSafe for AddParticipantResult
impl Send for AddParticipantResult
impl Sync for AddParticipantResult
impl Unpin for AddParticipantResult
impl UnsafeUnpin for AddParticipantResult
impl UnwindSafe for AddParticipantResult
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