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 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 ==
.source§impl Spanned for PropOrParam
impl Spanned for PropOrParam
impl StructuralPartialEq for PropOrParam
Auto Trait Implementations§
impl RefUnwindSafe for PropOrParam
impl Send for PropOrParam
impl Sync for PropOrParam
impl Unpin for PropOrParam
impl UnwindSafe for PropOrParam
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