pub struct FetchEscrowOptions { /* private fields */ }
Expand description
Options for fetching a VMO that was previously escrowed.
Implementations§
Source§impl FetchEscrowOptions
impl FetchEscrowOptions
Sourcepub fn on_inspect_sink_client(
self,
client: ClientEnd<InspectSinkMarker>,
) -> Self
pub fn on_inspect_sink_client( self, client: ClientEnd<InspectSinkMarker>, ) -> Self
This allows the client to provide the InspectSink client channel.
Sourcepub fn replace_with_tree(self) -> Self
pub fn replace_with_tree(self) -> Self
If true, the escrowed Inspect tree will be replaced with a new one, and a handle
to the new tree will be returned in FetchEscrowResult
.
Trait Implementations§
Source§impl Debug for FetchEscrowOptions
impl Debug for FetchEscrowOptions
Source§impl Default for FetchEscrowOptions
impl Default for FetchEscrowOptions
Source§fn default() -> FetchEscrowOptions
fn default() -> FetchEscrowOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FetchEscrowOptions
impl RefUnwindSafe for FetchEscrowOptions
impl Send for FetchEscrowOptions
impl Sync for FetchEscrowOptions
impl Unpin for FetchEscrowOptions
impl UnwindSafe for FetchEscrowOptions
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, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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