pub enum GetMidsError {
SendersWithoutMid,
ReceiversWithoutMid,
}Expand description
Errors occurring in MediaConnections::get_mids() method.
Variants§
SendersWithoutMid
Cannot get the mid from a Sender.
ReceiversWithoutMid
Cannot get the mid from a Receiver.
Trait Implementations§
Source§impl Clone for GetMidsError
impl Clone for GetMidsError
Source§fn clone(&self) -> GetMidsError
fn clone(&self) -> GetMidsError
Returns a duplicate of the value. Read more
1.0.0 · 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 GetMidsError
impl Debug for GetMidsError
Source§impl Display for GetMidsError
impl Display for GetMidsError
impl Copy for GetMidsError
Auto Trait Implementations§
impl Freeze for GetMidsError
impl RefUnwindSafe for GetMidsError
impl Send for GetMidsError
impl Sync for GetMidsError
impl Unpin for GetMidsError
impl UnwindSafe for GetMidsError
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