#[non_exhaustive]pub struct IncompatibleTimeError {
pub time: Time,
pub height: Height,
}
Expand description
Tried to satisfy a lock-by-blockheight lock using a time 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.time: Time
Attempted to satisfy a lock-by-blockheight lock with this time.
height: Height
The inner height value of the lock-by-blockheight lock.
Trait Implementations§
§impl Clone for IncompatibleTimeError
impl Clone for IncompatibleTimeError
§fn clone(&self) -> IncompatibleTimeError
fn clone(&self) -> IncompatibleTimeError
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 IncompatibleTimeError
impl Debug for IncompatibleTimeError
§impl Display for IncompatibleTimeError
impl Display for IncompatibleTimeError
§impl Error for IncompatibleTimeError
impl Error for IncompatibleTimeError
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 IncompatibleTimeError
impl PartialEq for IncompatibleTimeError
§fn eq(&self, other: &IncompatibleTimeError) -> bool
fn eq(&self, other: &IncompatibleTimeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IncompatibleTimeError
impl StructuralPartialEq for IncompatibleTimeError
Auto Trait Implementations§
impl Freeze for IncompatibleTimeError
impl RefUnwindSafe for IncompatibleTimeError
impl Send for IncompatibleTimeError
impl Sync for IncompatibleTimeError
impl Unpin for IncompatibleTimeError
impl UnwindSafe for IncompatibleTimeError
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