Struct kernel_NotificationInterfaceCallbacks

Source
#[repr(C)]
pub struct kernel_NotificationInterfaceCallbacks { pub user_data: *const c_void, pub block_tip: kernel_NotifyBlockTip, pub header_tip: kernel_NotifyHeaderTip, pub progress: kernel_NotifyProgress, pub warning_set: kernel_NotifyWarningSet, pub warning_unset: kernel_NotifyWarningUnset, pub flush_error: kernel_NotifyFlushError, pub fatal_error: kernel_NotifyFatalError, }
Expand description

A struct for holding the kernel notification callbacks. The user data pointer may be used to point to user-defined structures to make processing the notifications easier. Note that this makes it the user’s responsibility to ensure that the user_data outlives the kernel objects. Notifications can occur even as kernel objects are deleted, so care has to be taken to ensure safe unwinding.

Fields§

§user_data: *const c_void

!< Holds a user-defined opaque structure that is passed to the notification callbacks.

§block_tip: kernel_NotifyBlockTip

!< The chain’s tip was updated to the provided block index.

§header_tip: kernel_NotifyHeaderTip

!< A new best block header was added.

§progress: kernel_NotifyProgress

!< Reports on current block synchronization progress.

§warning_set: kernel_NotifyWarningSet

!< A warning issued by the kernel library during validation.

§warning_unset: kernel_NotifyWarningUnset

!< A previous condition leading to the issuance of a warning is no longer given.

§flush_error: kernel_NotifyFlushError

!< An error encountered when flushing data to disk.

§fatal_error: kernel_NotifyFatalError

!< A un-recoverable system error encountered by the library.

Trait Implementations§

Source§

impl Clone for kernel_NotificationInterfaceCallbacks

Source§

fn clone(&self) -> kernel_NotificationInterfaceCallbacks

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for kernel_NotificationInterfaceCallbacks

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for kernel_NotificationInterfaceCallbacks

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.