pub struct RestCallResponse {
pub method: String,
pub result: Value,
}Expand description
Response body for raw method bridge calls.
Fields§
§method: String§result: ValueTrait Implementations§
Source§impl Clone for RestCallResponse
impl Clone for RestCallResponse
Source§fn clone(&self) -> RestCallResponse
fn clone(&self) -> RestCallResponse
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 RestCallResponse
impl Debug for RestCallResponse
Source§impl<'de> Deserialize<'de> for RestCallResponse
impl<'de> Deserialize<'de> for RestCallResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RestCallResponse
impl PartialEq for RestCallResponse
Source§fn eq(&self, other: &RestCallResponse) -> bool
fn eq(&self, other: &RestCallResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RestCallResponse
impl Serialize for RestCallResponse
impl StructuralPartialEq for RestCallResponse
Auto Trait Implementations§
impl Freeze for RestCallResponse
impl RefUnwindSafe for RestCallResponse
impl Send for RestCallResponse
impl Sync for RestCallResponse
impl Unpin for RestCallResponse
impl UnsafeUnpin for RestCallResponse
impl UnwindSafe for RestCallResponse
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