pub enum BoundBuildingInternalMessage {
Parse(BoundBuildingParseInternalTransitionMessage),
Describe(BoundBuildingDescribeInternalTransitionMessage),
Bind(BoundBuildingBindInternalTransitionMessage),
Execute(BoundBuildingExecuteInternalTransitionMessage),
Close(BoundBuildingCloseInternalTransitionMessage),
Flush(BoundBuildingFlushInternalTransitionMessage),
Sync(BoundBuildingSyncInternalTransitionMessage),
}Expand description
Owned role-initiated messages legal in BoundBuilding.
Variants§
Parse(BoundBuildingParseInternalTransitionMessage)
The Event::Parse transition.
Describe(BoundBuildingDescribeInternalTransitionMessage)
The Event::Describe transition.
Bind(BoundBuildingBindInternalTransitionMessage)
The Event::Bind transition.
Execute(BoundBuildingExecuteInternalTransitionMessage)
The Event::Execute transition.
Close(BoundBuildingCloseInternalTransitionMessage)
The Event::Close transition.
Flush(BoundBuildingFlushInternalTransitionMessage)
The Event::Flush transition.
Sync(BoundBuildingSyncInternalTransitionMessage)
The Event::Sync transition.
Implementations§
Source§impl BoundBuildingInternalMessage
impl BoundBuildingInternalMessage
Sourcepub const fn as_wire(&self) -> &FrontendMessage
pub const fn as_wire(&self) -> &FrontendMessage
Borrows the underlying decoded wire message.
Sourcepub fn into_wire(self) -> FrontendMessage
pub fn into_wire(self) -> FrontendMessage
Returns the underlying decoded wire message.
Trait Implementations§
Source§impl AsRef<FrontendMessage> for BoundBuildingInternalMessage
impl AsRef<FrontendMessage> for BoundBuildingInternalMessage
Source§fn as_ref(&self) -> &FrontendMessage
fn as_ref(&self) -> &FrontendMessage
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl From<BoundBuildingInternalMessage> for FrontendMessage
impl From<BoundBuildingInternalMessage> for FrontendMessage
Source§fn from(message: BoundBuildingInternalMessage) -> Self
fn from(message: BoundBuildingInternalMessage) -> Self
Converts to this type from the input type.
Source§impl TryFrom<FrontendMessage> for BoundBuildingInternalMessage
impl TryFrom<FrontendMessage> for BoundBuildingInternalMessage
Source§type Error = FrontendMessage
type Error = FrontendMessage
The type returned in the event of a conversion error.
Source§fn try_from(message: FrontendMessage) -> Result<Self, FrontendMessage>
fn try_from(message: FrontendMessage) -> Result<Self, FrontendMessage>
Performs the conversion.
Auto Trait Implementations§
impl !Freeze for BoundBuildingInternalMessage
impl RefUnwindSafe for BoundBuildingInternalMessage
impl Send for BoundBuildingInternalMessage
impl Sync for BoundBuildingInternalMessage
impl Unpin for BoundBuildingInternalMessage
impl UnsafeUnpin for BoundBuildingInternalMessage
impl UnwindSafe for BoundBuildingInternalMessage
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