pub struct BridgeResponse {
pub call_id: u64,
pub status: u8,
pub payload: Vec<u8>,
}Fields§
§call_id: u64§status: u8§payload: Vec<u8>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
Source§fn eq(&self, other: &BridgeResponse) -> bool
fn eq(&self, other: &BridgeResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.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