pub enum BtOpenChannelState {
Opening,
Open,
Closed,
}
Variants§
Opening
Channel is waiting for the required confirmations.
Open
Channel is ready to transact.
Closed
Channel is has been closed with at least 1 onchain confirmation.
Trait Implementations§
Source§impl Clone for BtOpenChannelState
impl Clone for BtOpenChannelState
Source§fn clone(&self) -> BtOpenChannelState
fn clone(&self) -> BtOpenChannelState
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BtOpenChannelState
impl Debug for BtOpenChannelState
Source§impl<'de> Deserialize<'de> for BtOpenChannelState
impl<'de> Deserialize<'de> for BtOpenChannelState
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 BtOpenChannelState
impl PartialEq for BtOpenChannelState
Source§impl Serialize for BtOpenChannelState
impl Serialize for BtOpenChannelState
impl StructuralPartialEq for BtOpenChannelState
Auto Trait Implementations§
impl Freeze for BtOpenChannelState
impl RefUnwindSafe for BtOpenChannelState
impl Send for BtOpenChannelState
impl Sync for BtOpenChannelState
impl Unpin for BtOpenChannelState
impl UnwindSafe for BtOpenChannelState
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