pub struct CallResponse {
pub response_header: ResponseHeader,
pub results: Vec<CallMethodResult>,
}Expand description
CallResponse.
Fields§
§response_header: ResponseHeaderCommon response header.
results: Vec<CallMethodResult>One result per method call.
Trait Implementations§
Source§impl Clone for CallResponse
impl Clone for CallResponse
Source§fn clone(&self) -> CallResponse
fn clone(&self) -> CallResponse
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 CallResponse
impl Debug for CallResponse
Source§impl PartialEq for CallResponse
impl PartialEq for CallResponse
Source§fn eq(&self, other: &CallResponse) -> bool
fn eq(&self, other: &CallResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CallResponse
Auto Trait Implementations§
impl Freeze for CallResponse
impl RefUnwindSafe for CallResponse
impl Send for CallResponse
impl Sync for CallResponse
impl Unpin for CallResponse
impl UnsafeUnpin for CallResponse
impl UnwindSafe for CallResponse
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