#[non_exhaustive]pub enum RpcMsg {
Show 20 variants
GetInfo,
ListPeers,
ListChannels,
ListFunds,
Listen(ListenAddr),
ConnectPeer(LnpAddr),
DisconnectPeer(LnpAddr),
PingPeer,
CreateChannel(CreateChannel),
Send(Send),
PayInvoice(PayInvoice),
Progress(String),
Success(OptionDetails),
Failure(Failure),
NodeInfo(NodeInfo),
PeerInfo(PeerInfo),
ChannelInfo(ChannelInfo),
PeerList(ListPeerInfo),
ChannelList(List<ChannelId>),
FundsInfo(FundsInfo),
}
Expand description
RPC API requests between LNP Node daemons and clients.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GetInfo
ListPeers
ListChannels
ListFunds
Listen(ListenAddr)
ConnectPeer(LnpAddr)
DisconnectPeer(LnpAddr)
PingPeer
CreateChannel(CreateChannel)
Requests creation of a new outbound channel by a client.
Send(Send)
PayInvoice(PayInvoice)
Progress(String)
Success(OptionDetails)
Failure(Failure)
NodeInfo(NodeInfo)
PeerInfo(PeerInfo)
ChannelInfo(ChannelInfo)
PeerList(ListPeerInfo)
ChannelList(List<ChannelId>)
FundsInfo(FundsInfo)
Implementations§
Trait Implementations§
Source§impl From<ChannelInfo> for RpcMsg
impl From<ChannelInfo> for RpcMsg
Source§fn from(v: ChannelInfo) -> Self
fn from(v: ChannelInfo) -> Self
Converts to this type from the input type.
Source§impl From<ListPeerInfo> for RpcMsg
impl From<ListPeerInfo> for RpcMsg
Source§fn from(v: ListPeerInfo) -> Self
fn from(v: ListPeerInfo) -> Self
Converts to this type from the input type.
Source§impl StrictDecode for RpcMsg
impl StrictDecode for RpcMsg
Source§fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
Decode with the given
std::io::Read
instance; must either
construct an instance or return implementation-specific error type.Source§fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
Tries to deserialize byte array into the current type using
StrictDecode::strict_decode
. If there are some data remains in the
buffer once deserialization is completed, fails with
Error::DataNotEntirelyConsumed
. Use io::Cursor
over the buffer and
StrictDecode::strict_decode
to avoid such failures.Source§fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
Reads data from file at
path
and reconstructs object from it. Fails
with Error::DataNotEntirelyConsumed
if file contains remaining
data after the object reconstruction.Source§impl StrictEncode for RpcMsg
impl StrictEncode for RpcMsg
Source§fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
Encode with the given
std::io::Write
instance; must return result
with either amount of bytes encoded – or implementation-specific
error type.Source§fn strict_serialize(&self) -> Result<Vec<u8>, Error>
fn strict_serialize(&self) -> Result<Vec<u8>, Error>
Serializes data as a byte array using
StrictEncode::strict_encode
functionAuto Trait Implementations§
impl Freeze for RpcMsg
impl RefUnwindSafe for RpcMsg
impl Send for RpcMsg
impl Sync for RpcMsg
impl Unpin for RpcMsg
impl UnwindSafe for RpcMsg
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