pub struct ComponentLoadResponse {
pub handle: ComponentHandle,
}Expand description
Response from a successful crate::CapabilityEngine::load call.
Fields§
§handle: ComponentHandleOpaque handle to the now-loaded component instance, to be passed to
crate::CapabilityEngine::invoke.
Trait Implementations§
Source§impl Clone for ComponentLoadResponse
impl Clone for ComponentLoadResponse
Source§fn clone(&self) -> ComponentLoadResponse
fn clone(&self) -> ComponentLoadResponse
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 moreSource§impl Debug for ComponentLoadResponse
impl Debug for ComponentLoadResponse
impl Eq for ComponentLoadResponse
Source§impl PartialEq for ComponentLoadResponse
impl PartialEq for ComponentLoadResponse
impl StructuralPartialEq for ComponentLoadResponse
Auto Trait Implementations§
impl Freeze for ComponentLoadResponse
impl RefUnwindSafe for ComponentLoadResponse
impl Send for ComponentLoadResponse
impl Sync for ComponentLoadResponse
impl Unpin for ComponentLoadResponse
impl UnsafeUnpin for ComponentLoadResponse
impl UnwindSafe for ComponentLoadResponse
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