pub enum ChannelSendError {
NoChannel,
SendError(SendError<RealtimeMessage>),
ChannelError(ChannelState),
}Expand description
Error for channel send failures
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChannelSendError
impl RefUnwindSafe for ChannelSendError
impl Send for ChannelSendError
impl Sync for ChannelSendError
impl Unpin for ChannelSendError
impl UnwindSafe for ChannelSendError
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