pub enum GetFiltersError {
InvalidRange,
NotConnected,
}Expand description
An error from attempting to get compact filters.
Variants
InvalidRange
The specified range is invalid, eg. it is out of bounds.
NotConnected
Not connected to any compact filter peer.
Trait Implementations
impl Debug for GetFiltersError
impl Debug for GetFiltersError
impl Display for GetFiltersError
impl Display for GetFiltersError
impl Error for GetFiltersError
impl Error for GetFiltersError
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<GetFiltersError> for Error
impl From<GetFiltersError> for Error
sourcefn from(source: GetFiltersError) -> Error
fn from(source: GetFiltersError) -> Error
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for GetFiltersError
impl Send for GetFiltersError
impl Sync for GetFiltersError
impl Unpin for GetFiltersError
impl UnwindSafe for GetFiltersError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more