pub enum MessageContext {
Offers(OffersContext),
AsyncPayments(AsyncPaymentsContext),
DNSResolver(DNSResolverContext),
Custom(Vec<u8>),
}Expand description
Additional data included by the recipient in a BlindedMessagePath.
This data is encrypted by the recipient and will be given to the corresponding message handler
when handling a message sent over the BlindedMessagePath. The recipient can use this data to
authenticate the message or for further processing if needed.
Variants§
Offers(OffersContext)
Context specific to an OffersMessage.
AsyncPayments(AsyncPaymentsContext)
Context specific to an AsyncPaymentsMessage.
DNSResolver(DNSResolverContext)
Represents a context for a blinded path used in a reply path when requesting a DNSSEC proof
in a DNSResolverMessage.
Custom(Vec<u8>)
Context specific to a CustomOnionMessageHandler::CustomMessage.
Trait Implementations§
Source§impl Clone for MessageContext
impl Clone for MessageContext
Source§fn clone(&self) -> MessageContext
fn clone(&self) -> MessageContext
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 MessageContext
impl Debug for MessageContext
Source§impl Readable for MessageContext
impl Readable for MessageContext
Source§impl Writeable for MessageContext
impl Writeable for MessageContext
Auto Trait Implementations§
impl Freeze for MessageContext
impl RefUnwindSafe for MessageContext
impl Send for MessageContext
impl Sync for MessageContext
impl Unpin for MessageContext
impl UnwindSafe for MessageContext
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