pub struct ParameterInfo {
pub name: String,
pub param_type: ParameterType,
pub enum_values: Option<Vec<String>>,
pub enum_type_name: Option<String>,
pub is_array: bool,
pub array_item_type: Option<String>,
pub style: Option<String>,
pub explode: Option<bool>,
pub description: Option<String>,
}Fields§
§name: String§param_type: ParameterType§enum_values: Option<Vec<String>>§enum_type_name: Option<String>§is_array: bool§array_item_type: Option<String>§style: Option<String>§explode: Option<bool>§description: Option<String>Trait Implementations§
Source§impl Clone for ParameterInfo
impl Clone for ParameterInfo
Source§fn clone(&self) -> ParameterInfo
fn clone(&self) -> ParameterInfo
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 moreAuto Trait Implementations§
impl Freeze for ParameterInfo
impl RefUnwindSafe for ParameterInfo
impl Send for ParameterInfo
impl Sync for ParameterInfo
impl Unpin for ParameterInfo
impl UnwindSafe for ParameterInfo
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