pub enum SlotInfoVariant {
StubInfo {
pruneheight: u32,
},
ChannelInfo {
funding: Option<OutPoint>,
balance: ChannelBalance,
forget_seen: bool,
diagnostic: String,
},
}Expand description
Channel slot information for stubs and channels.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SlotInfoVariant
impl RefUnwindSafe for SlotInfoVariant
impl Send for SlotInfoVariant
impl Sync for SlotInfoVariant
impl Unpin for SlotInfoVariant
impl UnwindSafe for SlotInfoVariant
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