Struct bdk_chain::local_chain::CannotConnectError
source · pub struct CannotConnectError {
pub try_include_height: u32,
}
Expand description
Occurs when an update does not have a common checkpoint with the original chain.
Fields§
§try_include_height: u32
The suggested checkpoint to include to connect the two chains.
Trait Implementations§
source§impl Clone for CannotConnectError
impl Clone for CannotConnectError
source§fn clone(&self) -> CannotConnectError
fn clone(&self) -> CannotConnectError
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 moresource§impl Debug for CannotConnectError
impl Debug for CannotConnectError
source§impl Display for CannotConnectError
impl Display for CannotConnectError
source§impl Error for CannotConnectError
impl Error for CannotConnectError
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()
source§impl PartialEq for CannotConnectError
impl PartialEq for CannotConnectError
source§fn eq(&self, other: &CannotConnectError) -> bool
fn eq(&self, other: &CannotConnectError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CannotConnectError
Auto Trait Implementations§
impl Freeze for CannotConnectError
impl RefUnwindSafe for CannotConnectError
impl Send for CannotConnectError
impl Sync for CannotConnectError
impl Unpin for CannotConnectError
impl UnwindSafe for CannotConnectError
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