pub struct ErrorChannelOutOfRange(pub u8);Expand description
Error indicating that the channel value is out of range.
§Arguments
0- The channel value that caused the error.
Tuple Fields§
§0: u8The invalid channel value that caused the error.
Trait Implementations§
Source§impl Debug for ErrorChannelOutOfRange
impl Debug for ErrorChannelOutOfRange
Source§impl Display for ErrorChannelOutOfRange
impl Display for ErrorChannelOutOfRange
Source§impl Error for ErrorChannelOutOfRange
impl Error for ErrorChannelOutOfRange
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ErrorChannelOutOfRange
impl PartialEq for ErrorChannelOutOfRange
impl Eq for ErrorChannelOutOfRange
impl StructuralPartialEq for ErrorChannelOutOfRange
Auto Trait Implementations§
impl Freeze for ErrorChannelOutOfRange
impl RefUnwindSafe for ErrorChannelOutOfRange
impl Send for ErrorChannelOutOfRange
impl Sync for ErrorChannelOutOfRange
impl Unpin for ErrorChannelOutOfRange
impl UnwindSafe for ErrorChannelOutOfRange
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