pub struct HttpCallArgs {
pub call_type: HttpCallType,
pub url: String,
pub encoding: String,
pub body: Vec<u8>,
}Fields§
§call_type: HttpCallType§url: String§encoding: String§body: Vec<u8>Trait Implementations§
Source§impl Clone for HttpCallArgs
impl Clone for HttpCallArgs
Source§fn clone(&self) -> HttpCallArgs
fn clone(&self) -> HttpCallArgs
Returns a duplicate of the value. Read more
1.0.0 · 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 HttpCallArgs
impl Debug for HttpCallArgs
Source§impl<'de> Deserialize<'de> for HttpCallArgs
impl<'de> Deserialize<'de> for HttpCallArgs
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 HttpCallArgs
impl PartialEq for HttpCallArgs
Source§impl Serialize for HttpCallArgs
impl Serialize for HttpCallArgs
impl StructuralPartialEq for HttpCallArgs
Auto Trait Implementations§
impl Freeze for HttpCallArgs
impl RefUnwindSafe for HttpCallArgs
impl Send for HttpCallArgs
impl Sync for HttpCallArgs
impl Unpin for HttpCallArgs
impl UnwindSafe for HttpCallArgs
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