Struct jsdoc::ast::ParameterTag
source · pub struct ParameterTag {
pub span: Span,
pub name: Option<Text>,
pub ty: Option<Text>,
pub desc: Text,
}
Fields§
§span: Span
§name: Option<Text>
§ty: Option<Text>
§desc: Text
Trait Implementations§
source§impl Clone for ParameterTag
impl Clone for ParameterTag
source§fn clone(&self) -> ParameterTag
fn clone(&self) -> ParameterTag
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 ParameterTag
impl Debug for ParameterTag
source§impl<'de> Deserialize<'de> for ParameterTag
impl<'de> Deserialize<'de> for ParameterTag
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<ParameterTag> for Tag
impl From<ParameterTag> for Tag
source§fn from(v: ParameterTag) -> Self
fn from(v: ParameterTag) -> Self
Converts to this type from the input type.
source§impl PartialEq<ParameterTag> for ParameterTag
impl PartialEq<ParameterTag> for ParameterTag
source§fn eq(&self, other: &ParameterTag) -> bool
fn eq(&self, other: &ParameterTag) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.