Struct UpdateName

Source
pub struct UpdateName(pub u64, _);
Expand description

A struct representing a name for a channel monitor update.

UpdateName is primarily used within the MonitorUpdatingPersister in functions that store or retrieve partial updates to channel monitors. It provides a consistent way to generate and parse unique identifiers for monitor updates based on their sequence number.

The name is derived from the update’s sequence ID, which is a monotonically increasing u64 value. This format allows for easy ordering of updates and efficient storage and retrieval in key-value stores.

§Usage

While users of the Lightning Dev Kit library generally won’t need to interact with UpdateName directly, it still can be useful for custom persistence implementations. The u64 value is the update_id that can be compared with ChannelMonitor::get_latest_update_id to check if this update has been applied to the channel monitor or not, which is useful for pruning stale channel monitor updates off persistence.

§Examples

use lightning::util::persist::UpdateName;

let update_id: u64 = 42;
let update_name = UpdateName::from(update_id);
assert_eq!(update_name.as_str(), "42");

// Using UpdateName to generate a storage key
let monitor_name = "some_monitor_name";
let storage_key = format!("channel_monitor_updates/{}/{}", monitor_name, update_name.as_str());

Tuple Fields§

§0: u64

Implementations§

Source§

impl UpdateName

Source

pub fn new(name: String) -> Result<Self, Error>

Constructs an UpdateName, after verifying that an update sequence ID can be derived from the given name.

Source

pub fn as_str(&self) -> &str

Convert this update name to a string slice.

This method is particularly useful when you need to use the update name as part of a key in a key-value store or when logging.

§Examples
use lightning::util::persist::UpdateName;

let update_name = UpdateName::from(42);
assert_eq!(update_name.as_str(), "42");

Trait Implementations§

Source§

impl Debug for UpdateName

Source§

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

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

impl From<u64> for UpdateName

Source§

fn from(value: u64) -> Self

Creates an UpdateName from a u64.

This is typically used when you need to generate a storage key or identifier for a new channel monitor update.

§Examples
use lightning::util::persist::UpdateName;

let update_id: u64 = 42;
let update_name = UpdateName::from(update_id);
assert_eq!(update_name.as_str(), "42");

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> 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, 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V