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