#[non_exhaustive]pub struct IncompatibleHeightError {
pub height: Height,
pub time: Time,
}
Expand description
Tried to satisfy a lock-by-blocktime lock using a height value.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.height: Height
Attempted to satisfy a lock-by-blocktime lock with this height.
time: Time
The inner time value of the lock-by-blocktime lock.
Trait Implementations§
§impl Clone for IncompatibleHeightError
impl Clone for IncompatibleHeightError
§fn clone(&self) -> IncompatibleHeightError
fn clone(&self) -> IncompatibleHeightError
Returns a copy 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 more§impl Debug for IncompatibleHeightError
impl Debug for IncompatibleHeightError
§impl Display for IncompatibleHeightError
impl Display for IncompatibleHeightError
§impl Error for IncompatibleHeightError
impl Error for IncompatibleHeightError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
§impl PartialEq for IncompatibleHeightError
impl PartialEq for IncompatibleHeightError
§fn eq(&self, other: &IncompatibleHeightError) -> bool
fn eq(&self, other: &IncompatibleHeightError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IncompatibleHeightError
impl StructuralPartialEq for IncompatibleHeightError
Auto Trait Implementations§
impl Freeze for IncompatibleHeightError
impl RefUnwindSafe for IncompatibleHeightError
impl Send for IncompatibleHeightError
impl Sync for IncompatibleHeightError
impl Unpin for IncompatibleHeightError
impl UnwindSafe for IncompatibleHeightError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more