Enum agner_test_actor::query::Query
source · pub enum Query<M> {
Exit(ExitRq),
InitAck(InitAckRq),
SetLink(SetLinkRq),
SetTrapExit(SetTrapExitRq),
NextEvent(NextEventRq<M>),
}Variants§
Exit(ExitRq)
InitAck(InitAckRq)
SetLink(SetLinkRq)
SetTrapExit(SetTrapExitRq)
NextEvent(NextEventRq<M>)
Trait Implementations§
source§impl<M> From<NextEventRq<M>> for Query<M>
impl<M> From<NextEventRq<M>> for Query<M>
source§fn from(inner: NextEventRq<M>) -> Self
fn from(inner: NextEventRq<M>) -> Self
Converts to this type from the input type.
source§impl<M> From<SetTrapExitRq> for Query<M>
impl<M> From<SetTrapExitRq> for Query<M>
source§fn from(inner: SetTrapExitRq) -> Self
fn from(inner: SetTrapExitRq) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<M> !RefUnwindSafe for Query<M>
impl<M> Send for Query<M>where M: Send,
impl<M> Sync for Query<M>where M: Send,
impl<M> Unpin for Query<M>
impl<M> !UnwindSafe for Query<M>
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