pub enum Loading {
BlockHeaderLoaded {
height: Height,
},
FilterHeaderLoaded {
height: Height,
},
FilterHeaderVerified {
height: Height,
},
}Expand description
Event emitted by the client during the “loading” phase.
Variants§
BlockHeaderLoaded
A block header was loaded from the store. This event only fires during startup.
FilterHeaderLoaded
A filter header was loaded from the store. This event only fires during startup.
FilterHeaderVerified
A filter header was verified. This event only fires during startup.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Loading
impl RefUnwindSafe for Loading
impl Send for Loading
impl Sync for Loading
impl Unpin for Loading
impl UnwindSafe for Loading
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