pub struct PendingTlcs {
pub tlcs: Vec<TlcInfo>,
pub next_tlc_id: u64,
}Expand description
A collection of pending TLCs.
Fields§
§tlcs: Vec<TlcInfo>§next_tlc_id: u64Implementations§
Source§impl PendingTlcs
impl PendingTlcs
Trait Implementations§
Source§impl Clone for PendingTlcs
impl Clone for PendingTlcs
Source§fn clone(&self) -> PendingTlcs
fn clone(&self) -> PendingTlcs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PendingTlcs
impl Debug for PendingTlcs
Source§impl Default for PendingTlcs
impl Default for PendingTlcs
Source§fn default() -> PendingTlcs
fn default() -> PendingTlcs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingTlcs
impl<'de> Deserialize<'de> for PendingTlcs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PendingTlcs
impl PartialEq for PendingTlcs
Source§impl Serialize for PendingTlcs
impl Serialize for PendingTlcs
impl Eq for PendingTlcs
impl StructuralPartialEq for PendingTlcs
Auto Trait Implementations§
impl Freeze for PendingTlcs
impl RefUnwindSafe for PendingTlcs
impl Send for PendingTlcs
impl Sync for PendingTlcs
impl Unpin for PendingTlcs
impl UnsafeUnpin for PendingTlcs
impl UnwindSafe for PendingTlcs
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