pub enum RequestRoute {
Show 31 variants
Authenticate(AuthenticateRequest),
OpenSession(OpenSessionRequest),
CreateVm(CreateVmRequest),
DisposeVm(DisposeVmRequest),
BootstrapRootFilesystem(BootstrapRootFilesystemRequest),
ConfigureVm(ConfigureVmRequest),
RegisterHostCallbacks(RegisterHostCallbacksRequest),
CreateLayer(CreateLayerRequest),
SealLayer(SealLayerRequest),
ImportSnapshot(ImportSnapshotRequest),
ExportSnapshot(ExportSnapshotRequest),
CreateOverlay(CreateOverlayRequest),
GuestFilesystemCall(GuestFilesystemCallRequest),
GuestKernelCall(GuestKernelCallRequest),
SnapshotRootFilesystem(SnapshotRootFilesystemRequest),
Execute(ExecuteRequest),
WriteStdin(WriteStdinRequest),
ResizePty(ResizePtyRequest),
CloseStdin(CloseStdinRequest),
KillProcess(KillProcessRequest),
GetProcessSnapshot(GetProcessSnapshotRequest),
GetResourceSnapshot(GetResourceSnapshotRequest),
FindListener(FindListenerRequest),
FindBoundUdp(FindBoundUdpRequest),
VmFetch(VmFetchRequest),
GetSignalState(GetSignalStateRequest),
GetZombieTimerCount(GetZombieTimerCountRequest),
LinkPackage(LinkPackageRequest),
ProvidedCommands(ProvidedCommandsRequest),
Ext(ExtEnvelope),
UnsupportedHostCallbackDirection,
}Variants§
Authenticate(AuthenticateRequest)
OpenSession(OpenSessionRequest)
CreateVm(CreateVmRequest)
DisposeVm(DisposeVmRequest)
BootstrapRootFilesystem(BootstrapRootFilesystemRequest)
ConfigureVm(ConfigureVmRequest)
RegisterHostCallbacks(RegisterHostCallbacksRequest)
CreateLayer(CreateLayerRequest)
SealLayer(SealLayerRequest)
ImportSnapshot(ImportSnapshotRequest)
ExportSnapshot(ExportSnapshotRequest)
CreateOverlay(CreateOverlayRequest)
GuestFilesystemCall(GuestFilesystemCallRequest)
GuestKernelCall(GuestKernelCallRequest)
SnapshotRootFilesystem(SnapshotRootFilesystemRequest)
Execute(ExecuteRequest)
WriteStdin(WriteStdinRequest)
ResizePty(ResizePtyRequest)
CloseStdin(CloseStdinRequest)
KillProcess(KillProcessRequest)
GetProcessSnapshot(GetProcessSnapshotRequest)
GetResourceSnapshot(GetResourceSnapshotRequest)
FindListener(FindListenerRequest)
FindBoundUdp(FindBoundUdpRequest)
VmFetch(VmFetchRequest)
GetSignalState(GetSignalStateRequest)
GetZombieTimerCount(GetZombieTimerCountRequest)
LinkPackage(LinkPackageRequest)
ProvidedCommands(ProvidedCommandsRequest)
Ext(ExtEnvelope)
UnsupportedHostCallbackDirection
Trait Implementations§
Source§impl Clone for RequestRoute
impl Clone for RequestRoute
Source§fn clone(&self) -> RequestRoute
fn clone(&self) -> RequestRoute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RequestRoute
impl RefUnwindSafe for RequestRoute
impl Send for RequestRoute
impl Sync for RequestRoute
impl Unpin for RequestRoute
impl UnsafeUnpin for RequestRoute
impl UnwindSafe for RequestRoute
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more