Enum jsdoc::ast::PropOrParam
source · pub enum PropOrParam {
Prop(PropertyTag),
Param(ParameterTag),
}Variants§
Prop(PropertyTag)
Param(ParameterTag)
Trait Implementations§
source§impl Clone for PropOrParam
impl Clone for PropOrParam
source§fn clone(&self) -> PropOrParam
fn clone(&self) -> PropOrParam
Returns a copy 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 PropOrParam
impl Debug for PropOrParam
source§impl<'de> Deserialize<'de> for PropOrParam
impl<'de> Deserialize<'de> for PropOrParam
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
source§impl From<ParameterTag> for PropOrParam
impl From<ParameterTag> for PropOrParam
source§fn from(v: ParameterTag) -> Self
fn from(v: ParameterTag) -> Self
Converts to this type from the input type.
source§impl From<PropertyTag> for PropOrParam
impl From<PropertyTag> for PropOrParam
source§fn from(v: PropertyTag) -> Self
fn from(v: PropertyTag) -> Self
Converts to this type from the input type.
source§impl PartialEq<PropOrParam> for PropOrParam
impl PartialEq<PropOrParam> for PropOrParam
source§fn eq(&self, other: &PropOrParam) -> bool
fn eq(&self, other: &PropOrParam) -> bool
This method tests for
self and other values to be equal, and is used
by ==.