pub struct OfferResources { /* private fields */ }
Expand description
Resources for an offered channel.
Implementations§
Source§impl OfferResources
impl OfferResources
Sourcepub fn new(
untrusted_memory: GuestMemory,
private_memory: Option<GuestMemory>,
) -> Self
pub fn new( untrusted_memory: GuestMemory, private_memory: Option<GuestMemory>, ) -> Self
Creates a new OfferResources
.
Sourcepub fn guest_memory(&self, open_request: &OpenRequest) -> &GuestMemory
pub fn guest_memory(&self, open_request: &OpenRequest) -> &GuestMemory
Returns the GuestMemory
to use based on the whether the open request requests confidential
memory.
The open request reflects both whether the device indicated it supports confidential external memory when it was offered, and whether the currently connected vmbus client supports it. As such, you must not attempt to get the guest memory until a channel is opened, and you should not retain the guest memory after it is closed, as the client and its capabilities may change across opens.
Trait Implementations§
Source§impl Debug for OfferResources
impl Debug for OfferResources
Source§impl Default for OfferResources
impl Default for OfferResources
Source§fn default() -> OfferResources
fn default() -> OfferResources
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OfferResources
impl !RefUnwindSafe for OfferResources
impl Send for OfferResources
impl Sync for OfferResources
impl Unpin for OfferResources
impl !UnwindSafe for OfferResources
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