pub struct RestCallBody {
pub params: Value,
pub client: Option<RestClientOptions>,
}Expand description
Request body for raw method bridge calls.
Fields§
§params: Value§client: Option<RestClientOptions>Trait Implementations§
Source§impl Clone for RestCallBody
impl Clone for RestCallBody
Source§fn clone(&self) -> RestCallBody
fn clone(&self) -> RestCallBody
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 RestCallBody
impl Debug for RestCallBody
Source§impl<'de> Deserialize<'de> for RestCallBody
impl<'de> Deserialize<'de> for RestCallBody
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 RestCallBody
impl PartialEq for RestCallBody
Source§fn eq(&self, other: &RestCallBody) -> bool
fn eq(&self, other: &RestCallBody) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RestCallBody
impl Serialize for RestCallBody
impl StructuralPartialEq for RestCallBody
Auto Trait Implementations§
impl Freeze for RestCallBody
impl RefUnwindSafe for RestCallBody
impl Send for RestCallBody
impl Sync for RestCallBody
impl Unpin for RestCallBody
impl UnsafeUnpin for RestCallBody
impl UnwindSafe for RestCallBody
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