pub struct BridgeResponse {
pub call_id: u64,
pub status: u8,
pub payload: Vec<u8>,
pub reservation: Option<SharedReservation>,
}Fields§
§call_id: u64§status: u8§payload: Vec<u8>§reservation: Option<SharedReservation>In-process byte ownership. IPC-created responses leave this empty; sidecar-owned direct responses retain it until V8 copies the payload.
Trait Implementations§
Source§impl Clone for BridgeResponse
impl Clone for BridgeResponse
Source§fn clone(&self) -> BridgeResponse
fn clone(&self) -> BridgeResponse
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 BridgeResponse
impl Debug for BridgeResponse
Source§impl PartialEq for BridgeResponse
impl PartialEq for BridgeResponse
impl StructuralPartialEq for BridgeResponse
Auto Trait Implementations§
impl Freeze for BridgeResponse
impl RefUnwindSafe for BridgeResponse
impl Send for BridgeResponse
impl Sync for BridgeResponse
impl Unpin for BridgeResponse
impl UnsafeUnpin for BridgeResponse
impl UnwindSafe for BridgeResponse
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