pub struct ParamDef {
pub pd_name: String,
pub pd_type: TypeRef,
pub pd_description: Option<String>,
pub pd_required: bool,
pub pd_default: Option<Value>,
}Expand description
Parameter definition
Fields§
§pd_name: String§pd_type: TypeRef§pd_description: Option<String>§pd_required: bool§pd_default: Option<Value>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