pub struct RequestBodyIr {
pub content_type: ContentType,
pub type_ref: TypeRef,
pub required: bool,
pub fields: Option<Vec<Field>>,
}Fields§
§content_type: ContentType§type_ref: TypeRef§required: bool§fields: Option<Vec<Field>>Inline field definitions for multipart form-data bodies.
Trait Implementations§
Source§impl Clone for RequestBodyIr
impl Clone for RequestBodyIr
Source§fn clone(&self) -> RequestBodyIr
fn clone(&self) -> RequestBodyIr
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 RequestBodyIr
impl Debug for RequestBodyIr
Source§impl PartialEq for RequestBodyIr
impl PartialEq for RequestBodyIr
impl StructuralPartialEq for RequestBodyIr
Auto Trait Implementations§
impl Freeze for RequestBodyIr
impl RefUnwindSafe for RequestBodyIr
impl Send for RequestBodyIr
impl Sync for RequestBodyIr
impl Unpin for RequestBodyIr
impl UnsafeUnpin for RequestBodyIr
impl UnwindSafe for RequestBodyIr
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