pub struct BodyReqOptions;
Expand description
The structure which represents a body of a envelope of type options
.
Trait Implementations§
Source§impl Clone for BodyReqOptions
impl Clone for BodyReqOptions
Source§fn clone(&self) -> BodyReqOptions
fn clone(&self) -> BodyReqOptions
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 BodyReqOptions
impl Debug for BodyReqOptions
Source§impl Default for BodyReqOptions
impl Default for BodyReqOptions
Source§fn default() -> BodyReqOptions
fn default() -> BodyReqOptions
Returns the “default value” for a type. Read more
Source§impl FromCursor for BodyReqOptions
impl FromCursor for BodyReqOptions
Source§impl Hash for BodyReqOptions
impl Hash for BodyReqOptions
Source§impl Ord for BodyReqOptions
impl Ord for BodyReqOptions
Source§fn cmp(&self, other: &BodyReqOptions) -> Ordering
fn cmp(&self, other: &BodyReqOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BodyReqOptions
impl PartialEq for BodyReqOptions
Source§impl PartialOrd for BodyReqOptions
impl PartialOrd for BodyReqOptions
Source§impl Serialize for BodyReqOptions
impl Serialize for BodyReqOptions
impl Copy for BodyReqOptions
impl Eq for BodyReqOptions
impl StructuralPartialEq for BodyReqOptions
Auto Trait Implementations§
impl Freeze for BodyReqOptions
impl RefUnwindSafe for BodyReqOptions
impl Send for BodyReqOptions
impl Sync for BodyReqOptions
impl Unpin for BodyReqOptions
impl UnwindSafe for BodyReqOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more