pub enum LSPS0ClientEvent {
ListProtocolsResponse {
counterparty_node_id: PublicKey,
protocols: Vec<u16>,
},
}
Expand description
An event which an LSPS0 client may want to take some action in response to.
Variants§
ListProtocolsResponse
Information from the LSP about the protocols they support.
Trait Implementations§
Source§impl Clone for LSPS0ClientEvent
impl Clone for LSPS0ClientEvent
Source§fn clone(&self) -> LSPS0ClientEvent
fn clone(&self) -> LSPS0ClientEvent
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 LSPS0ClientEvent
impl Debug for LSPS0ClientEvent
Source§impl PartialEq for LSPS0ClientEvent
impl PartialEq for LSPS0ClientEvent
impl Eq for LSPS0ClientEvent
impl StructuralPartialEq for LSPS0ClientEvent
Auto Trait Implementations§
impl Freeze for LSPS0ClientEvent
impl RefUnwindSafe for LSPS0ClientEvent
impl Send for LSPS0ClientEvent
impl Sync for LSPS0ClientEvent
impl Unpin for LSPS0ClientEvent
impl UnwindSafe for LSPS0ClientEvent
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