pub enum Query<R> {
Show 17 variants
InitDone(InitDone),
Spawn(Spawn<R>),
Start(Start<R>),
Recv(Recv),
RecvClose(RecvClose),
Fork(Fork<R>),
ForkRun(ForkRun),
Quit(Quit),
Tell(Tell),
Watch(Watch),
Unwatch(Unwatch),
Link(Link),
Unlink(Unlink),
SetTrapExit(SetTrapExit),
Exit(Exit),
Kill(Kill),
BindNetAddress(Bind<NetAddress>),
}Variants§
InitDone(InitDone)
Spawn(Spawn<R>)
Start(Start<R>)
Recv(Recv)
RecvClose(RecvClose)
Fork(Fork<R>)
ForkRun(ForkRun)
Quit(Quit)
Tell(Tell)
Watch(Watch)
Unwatch(Unwatch)
Link(Link)
Unlink(Unlink)
SetTrapExit(SetTrapExit)
Exit(Exit)
Kill(Kill)
BindNetAddress(Bind<NetAddress>)
Trait Implementations§
Source§impl<R> From<Bind> for Query<R>
impl<R> From<Bind> for Query<R>
Source§fn from(value: Bind<NetAddress>) -> Self
fn from(value: Bind<NetAddress>) -> Self
Converts to this type from the input type.
Source§impl<R> From<SetTrapExit> for Query<R>
impl<R> From<SetTrapExit> for Query<R>
Source§fn from(value: SetTrapExit) -> Self
fn from(value: SetTrapExit) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<R> Freeze for Query<R>where
R: Freeze,
impl<R> !RefUnwindSafe for Query<R>
impl<R> Send for Query<R>where
R: Send,
impl<R> !Sync for Query<R>
impl<R> Unpin for Query<R>where
R: Unpin,
impl<R> !UnwindSafe for Query<R>
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