pub enum BindChannelError {
AlreadyExists,
NoAllocation,
}Expand description
Errors produced when attempting to bind a channel.
Variants§
AlreadyExists
The channel identifier already exists and cannot be recreated.
NoAllocation
There is no connection to the TURN server that can handle this channel.
Trait Implementations§
Source§impl Debug for BindChannelError
impl Debug for BindChannelError
Auto Trait Implementations§
impl Freeze for BindChannelError
impl RefUnwindSafe for BindChannelError
impl Send for BindChannelError
impl Sync for BindChannelError
impl Unpin for BindChannelError
impl UnwindSafe for BindChannelError
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