pub struct ParamDef {
pub name: String,
pub ty: TypeRef,
pub optional: bool,
pub default: Option<String>,
pub sanitized: bool,
pub typed_default: Option<DefaultValue>,
}Expand description
A function/method parameter.
Fields§
§name: String§ty: TypeRef§optional: bool§default: Option<String>§sanitized: boolTrue if this param’s type was sanitized during unknown type resolution.
typed_default: Option<DefaultValue>Typed default value for language-native default emission.
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