pub enum ConflictError {
InvalidConflict(u8),
}Available on crate feature
block only.Expand description
Errors related to ledger types.
Variants§
Trait Implementations§
Source§impl Debug for ConflictError
impl Debug for ConflictError
Source§impl Display for ConflictError
impl Display for ConflictError
Source§impl Error for ConflictError
Available on crate feature std only.
impl Error for ConflictError
Available on crate feature
std only.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 From<Infallible> for ConflictError
impl From<Infallible> for ConflictError
Source§fn from(err: Infallible) -> Self
fn from(err: Infallible) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConflictError
impl RefUnwindSafe for ConflictError
impl Send for ConflictError
impl Sync for ConflictError
impl Unpin for ConflictError
impl UnsafeUnpin for ConflictError
impl UnwindSafe for ConflictError
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