pub enum SupportError {
UnknownChannel(String),
BadDate {
field: &'static str,
value: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SupportError
impl Clone for SupportError
Source§fn clone(&self) -> SupportError
fn clone(&self) -> SupportError
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 moreSource§impl Debug for SupportError
impl Debug for SupportError
Source§impl Display for SupportError
impl Display for SupportError
impl Eq for SupportError
Source§impl Error for SupportError
impl Error for SupportError
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 SupportError
impl PartialEq for SupportError
impl StructuralPartialEq for SupportError
Auto Trait Implementations§
impl Freeze for SupportError
impl RefUnwindSafe for SupportError
impl Send for SupportError
impl Sync for SupportError
impl Unpin for SupportError
impl UnsafeUnpin for SupportError
impl UnwindSafe for SupportError
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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