pub struct ParamDef {
pub required: bool,
pub default: Option<String>,
pub description: Option<String>,
}Expand description
Parameter definition in config.
Fields§
§required: boolWhether this parameter is required.
default: Option<String>Default value if not provided.
description: Option<String>Description for documentation.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ParamDef
impl<'de> Deserialize<'de> for ParamDef
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 ParamDef
impl RefUnwindSafe for ParamDef
impl Send for ParamDef
impl Sync for ParamDef
impl Unpin for ParamDef
impl UnsafeUnpin for ParamDef
impl UnwindSafe for ParamDef
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