pub struct ParameterProperty {
pub typ: Option<ParameterType>,
pub description: String,
pub items: Option<HashMap<String, String>>,
}
Fields§
§typ: Option<ParameterType>
§description: String
§items: Option<HashMap<String, String>>
Implementations§
Source§impl ParameterProperty
impl ParameterProperty
pub fn builder() -> ParameterPropertyBuilder
Trait Implementations§
Source§impl Clone for ParameterProperty
impl Clone for ParameterProperty
Source§fn clone(&self) -> ParameterProperty
fn clone(&self) -> ParameterProperty
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 ParameterProperty
impl Debug for ParameterProperty
Source§impl<'de> Deserialize<'de> for ParameterProperty
impl<'de> Deserialize<'de> for ParameterProperty
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParameterProperty
impl RefUnwindSafe for ParameterProperty
impl Send for ParameterProperty
impl Sync for ParameterProperty
impl Unpin for ParameterProperty
impl UnwindSafe for ParameterProperty
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