pub struct GetResponseBodyForInterceptionReturns {
pub body: String,
pub base64Encoded: bool,
}Expand description
Returns content served for the given currently intercepted request.
Fields§
§body: StringResponse body.
base64Encoded: boolTrue, if content was sent as base64.
Trait Implementations§
Source§impl Clone for GetResponseBodyForInterceptionReturns
impl Clone for GetResponseBodyForInterceptionReturns
Source§fn clone(&self) -> GetResponseBodyForInterceptionReturns
fn clone(&self) -> GetResponseBodyForInterceptionReturns
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 Default for GetResponseBodyForInterceptionReturns
impl Default for GetResponseBodyForInterceptionReturns
Source§fn default() -> GetResponseBodyForInterceptionReturns
fn default() -> GetResponseBodyForInterceptionReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetResponseBodyForInterceptionReturns
impl<'de> Deserialize<'de> for GetResponseBodyForInterceptionReturns
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 GetResponseBodyForInterceptionReturns
impl RefUnwindSafe for GetResponseBodyForInterceptionReturns
impl Send for GetResponseBodyForInterceptionReturns
impl Sync for GetResponseBodyForInterceptionReturns
impl Unpin for GetResponseBodyForInterceptionReturns
impl UnsafeUnpin for GetResponseBodyForInterceptionReturns
impl UnwindSafe for GetResponseBodyForInterceptionReturns
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