pub struct MessageHandler<CM: Deref, RM: Deref, OM: Deref>where
    CM::Target: ChannelMessageHandler,
    RM::Target: RoutingMessageHandler,
    OM::Target: OnionMessageHandler,{
    pub chan_handler: CM,
    pub route_handler: RM,
    pub onion_message_handler: OM,
}
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. For now, this can only be an IgnoringMessageHandler.

Auto Trait Implementations§

§

impl<CM, RM, OM> RefUnwindSafe for MessageHandler<CM, RM, OM>where CM: RefUnwindSafe, OM: RefUnwindSafe, RM: RefUnwindSafe,

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.