pub enum GssDecisionInternalMessage {
Accept(GssDecisionAcceptInternalTransitionMessage),
Reject(GssDecisionRejectInternalTransitionMessage),
LegacyError(GssDecisionLegacyErrorInternalTransitionMessage),
}Expand description
Owned role-initiated messages legal in GssDecision.
Variants§
Accept(GssDecisionAcceptInternalTransitionMessage)
The Event::Accept transition.
Reject(GssDecisionRejectInternalTransitionMessage)
The Event::Reject transition.
LegacyError(GssDecisionLegacyErrorInternalTransitionMessage)
The Event::LegacyError transition.
Implementations§
Source§impl GssDecisionInternalMessage
impl GssDecisionInternalMessage
Sourcepub const fn as_wire(&self) -> &EncryptionReply
pub const fn as_wire(&self) -> &EncryptionReply
Borrows the underlying decoded wire message.
Sourcepub fn into_wire(self) -> EncryptionReply
pub fn into_wire(self) -> EncryptionReply
Returns the underlying decoded wire message.
Trait Implementations§
Source§impl AsRef<EncryptionReply> for GssDecisionInternalMessage
impl AsRef<EncryptionReply> for GssDecisionInternalMessage
Source§fn as_ref(&self) -> &EncryptionReply
fn as_ref(&self) -> &EncryptionReply
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl From<GssDecisionInternalMessage> for EncryptionReply
impl From<GssDecisionInternalMessage> for EncryptionReply
Source§fn from(message: GssDecisionInternalMessage) -> Self
fn from(message: GssDecisionInternalMessage) -> Self
Converts to this type from the input type.
Source§impl TryFrom<EncryptionReply> for GssDecisionInternalMessage
impl TryFrom<EncryptionReply> for GssDecisionInternalMessage
Source§type Error = EncryptionReply
type Error = EncryptionReply
The type returned in the event of a conversion error.
Source§fn try_from(message: EncryptionReply) -> Result<Self, EncryptionReply>
fn try_from(message: EncryptionReply) -> Result<Self, EncryptionReply>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GssDecisionInternalMessage
impl RefUnwindSafe for GssDecisionInternalMessage
impl Send for GssDecisionInternalMessage
impl Sync for GssDecisionInternalMessage
impl Unpin for GssDecisionInternalMessage
impl UnsafeUnpin for GssDecisionInternalMessage
impl UnwindSafe for GssDecisionInternalMessage
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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