Struct lightning::ln::peer_handler::MessageHandler

source ·
pub struct MessageHandler<CM: Deref, RM: Deref, OM: Deref, CustomM: Deref>{
    pub chan_handler: CM,
    pub route_handler: RM,
    pub onion_message_handler: OM,
    pub custom_message_handler: CustomM,
}
Expand description

Provides references to trait impls which handle different types of messages.

Fields§

§chan_handler: CM

A message handler which handles messages specific to channels. Usually this is just a ChannelManager object or an ErroringMessageHandler.

§route_handler: RM

A message handler which handles messages updating our knowledge of the network channel graph. Usually this is just a P2PGossipSync object or an IgnoringMessageHandler.

§onion_message_handler: OM

A message handler which handles onion messages. This should generally be an OnionMessenger, but can also be an IgnoringMessageHandler.

§custom_message_handler: CustomM

A message handler which handles custom messages. The only LDK-provided implementation is IgnoringMessageHandler.

Auto Trait Implementations§

§

impl<CM, RM, OM, CustomM> Freeze for MessageHandler<CM, RM, OM, CustomM>
where CM: Freeze, RM: Freeze, OM: Freeze, CustomM: Freeze,

§

impl<CM, RM, OM, CustomM> RefUnwindSafe for MessageHandler<CM, RM, OM, CustomM>

§

impl<CM, RM, OM, CustomM> Send for MessageHandler<CM, RM, OM, CustomM>
where CM: Send, RM: Send, OM: Send, CustomM: Send,

§

impl<CM, RM, OM, CustomM> Sync for MessageHandler<CM, RM, OM, CustomM>
where CM: Sync, RM: Sync, OM: Sync, CustomM: Sync,

§

impl<CM, RM, OM, CustomM> Unpin for MessageHandler<CM, RM, OM, CustomM>
where CM: Unpin, RM: Unpin, OM: Unpin, CustomM: Unpin,

§

impl<CM, RM, OM, CustomM> UnwindSafe for MessageHandler<CM, RM, OM, CustomM>
where CM: UnwindSafe, RM: UnwindSafe, OM: UnwindSafe, CustomM: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.