pub struct ShapeResponse {
pub url: String,
pub method: String,
pub headers: Vec<HeaderWire>,
pub body_base64: String,
}Fields§
§url: String§method: String§headers: Vec<HeaderWire>§body_base64: StringImplementations§
Source§impl ShapeResponse
impl ShapeResponse
pub fn dry_run_sample() -> Self
Trait Implementations§
Source§impl Clone for ShapeResponse
impl Clone for ShapeResponse
Source§fn clone(&self) -> ShapeResponse
fn clone(&self) -> ShapeResponse
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 ShapeResponse
impl Debug for ShapeResponse
Source§impl<'de> Deserialize<'de> for ShapeResponse
impl<'de> Deserialize<'de> for ShapeResponse
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
impl Eq for ShapeResponse
Source§impl PartialEq for ShapeResponse
impl PartialEq for ShapeResponse
Source§fn eq(&self, other: &ShapeResponse) -> bool
fn eq(&self, other: &ShapeResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ShapeResponse
impl Serialize for ShapeResponse
impl StructuralPartialEq for ShapeResponse
Auto Trait Implementations§
impl Freeze for ShapeResponse
impl RefUnwindSafe for ShapeResponse
impl Send for ShapeResponse
impl Sync for ShapeResponse
impl Unpin for ShapeResponse
impl UnsafeUnpin for ShapeResponse
impl UnwindSafe for ShapeResponse
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