pub struct BodyBinding {
pub var_name: String,
pub rust_type: String,
pub media_type: String,
pub required: bool,
pub encoding: BodyEncoding,
pub multipart_supported: bool,
pub multipart_parts: Vec<MultipartPart>,
}Fields§
§var_name: String§rust_type: String§media_type: String§required: bool§encoding: BodyEncoding§multipart_supported: bool§multipart_parts: Vec<MultipartPart>Auto Trait Implementations§
impl Freeze for BodyBinding
impl RefUnwindSafe for BodyBinding
impl Send for BodyBinding
impl Sync for BodyBinding
impl Unpin for BodyBinding
impl UnsafeUnpin for BodyBinding
impl UnwindSafe for BodyBinding
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