btck_NotificationInterfaceCallbacks

Struct btck_NotificationInterfaceCallbacks 

Source
#[repr(C)]
pub struct btck_NotificationInterfaceCallbacks { pub user_data: *mut c_void, pub user_data_destroy: btck_DestroyCallback, pub block_tip: btck_NotifyBlockTip, pub header_tip: btck_NotifyHeaderTip, pub progress: btck_NotifyProgress, pub warning_set: btck_NotifyWarningSet, pub warning_unset: btck_NotifyWarningUnset, pub flush_error: btck_NotifyFlushError, pub fatal_error: btck_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.

If user_data_destroy is provided, the kernel will automatically call this callback to clean up user_data when the notification interface object is destroyed. If user_data_destroy is NULL, it is 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: *mut c_void

!< Holds a user-defined opaque structure that is passed to the notification callbacks. !< If user_data_destroy is also defined ownership of the user_data is passed to the !< created context options and subsequently context.

§user_data_destroy: btck_DestroyCallback

!< Frees the provided user data structure.

§block_tip: btck_NotifyBlockTip

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

§header_tip: btck_NotifyHeaderTip

!< A new best block header was added.

§progress: btck_NotifyProgress

!< Reports on current block synchronization progress.

§warning_set: btck_NotifyWarningSet

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

§warning_unset: btck_NotifyWarningUnset

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

§flush_error: btck_NotifyFlushError

!< An error encountered when flushing data to disk.

§fatal_error: btck_NotifyFatalError

!< An unrecoverable system error encountered by the library.

Trait Implementations§

Source§

impl Clone for btck_NotificationInterfaceCallbacks

Source§

fn clone(&self) -> btck_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 btck_NotificationInterfaceCallbacks

Source§

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

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

impl Copy for btck_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.