pub struct RequestInputModel {
pub name: String,
pub operation_id: String,
pub media_type: String,
pub body_required: bool,
pub fields: Vec<RequestInputField>,
}Fields§
§name: String§operation_id: String§media_type: String§body_required: bool§fields: Vec<RequestInputField>Trait Implementations§
Source§impl Clone for RequestInputModel
impl Clone for RequestInputModel
Source§fn clone(&self) -> RequestInputModel
fn clone(&self) -> RequestInputModel
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 moreAuto Trait Implementations§
impl Freeze for RequestInputModel
impl RefUnwindSafe for RequestInputModel
impl Send for RequestInputModel
impl Sync for RequestInputModel
impl Unpin for RequestInputModel
impl UnsafeUnpin for RequestInputModel
impl UnwindSafe for RequestInputModel
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