pub struct ComponentInvokeResponse {
pub payload: Vec<u8>,
}Expand description
Response from a successful crate::CapabilityEngine::invoke call.
Fields§
§payload: Vec<u8>Raw response payload bytes produced by the component’s export.
Trait Implementations§
Source§impl Clone for ComponentInvokeResponse
impl Clone for ComponentInvokeResponse
Source§fn clone(&self) -> ComponentInvokeResponse
fn clone(&self) -> ComponentInvokeResponse
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 ComponentInvokeResponse
impl Debug for ComponentInvokeResponse
impl Eq for ComponentInvokeResponse
Source§impl PartialEq for ComponentInvokeResponse
impl PartialEq for ComponentInvokeResponse
impl StructuralPartialEq for ComponentInvokeResponse
Auto Trait Implementations§
impl Freeze for ComponentInvokeResponse
impl RefUnwindSafe for ComponentInvokeResponse
impl Send for ComponentInvokeResponse
impl Sync for ComponentInvokeResponse
impl Unpin for ComponentInvokeResponse
impl UnsafeUnpin for ComponentInvokeResponse
impl UnwindSafe for ComponentInvokeResponse
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