pub enum LogicLongError {
InvalidTag(String),
InvalidHighID(u32),
}
Variants§
Trait Implementations§
Source§impl Clone for LogicLongError
impl Clone for LogicLongError
Source§fn clone(&self) -> LogicLongError
fn clone(&self) -> LogicLongError
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 LogicLongError
impl Debug for LogicLongError
Source§impl Display for LogicLongError
impl Display for LogicLongError
Source§impl Error for LogicLongError
impl Error for LogicLongError
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 LogicLongError
impl PartialEq for LogicLongError
impl Eq for LogicLongError
impl StructuralPartialEq for LogicLongError
Auto Trait Implementations§
impl Freeze for LogicLongError
impl RefUnwindSafe for LogicLongError
impl Send for LogicLongError
impl Sync for LogicLongError
impl Unpin for LogicLongError
impl UnwindSafe for LogicLongError
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