pub struct HttpCompensator {
pub method: String,
pub url: String,
pub body: Option<String>,
}Expand description
The request that reverses an HttpMutation.
Fields§
§method: String§url: String§body: Option<String>Trait Implementations§
Source§impl Clone for HttpCompensator
impl Clone for HttpCompensator
Source§fn clone(&self) -> HttpCompensator
fn clone(&self) -> HttpCompensator
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 HttpCompensator
impl Debug for HttpCompensator
Source§impl<'de> Deserialize<'de> for HttpCompensator
impl<'de> Deserialize<'de> for HttpCompensator
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
Auto Trait Implementations§
impl Freeze for HttpCompensator
impl RefUnwindSafe for HttpCompensator
impl Send for HttpCompensator
impl Sync for HttpCompensator
impl Unpin for HttpCompensator
impl UnsafeUnpin for HttpCompensator
impl UnwindSafe for HttpCompensator
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