pub enum NatSpecKind {
Title,
Author,
Notice,
Dev,
Param {
name: Ident,
},
Return {
name: Option<Ident>,
},
Inheritdoc {
contract: Ident,
},
Custom {
name: Ident,
},
Internal {
tag: Ident,
},
}Expand description
The kind of a NatSpecItem.
Reference: https://docs.soliditylang.org/en/latest/natspec-format.html#tags
Variants§
Title
@title
A title that describes the contract.
Author
@author
The name of the author.
Notice
@notice
An annotation for end-users.
Dev
@dev
A technical annotation for developers.
Param
@param <name>
Documents a parameter. The name field contains the parameter name.
Return
@return <name>
Documents a return variable. The optional name field contains the return variable name.
Inheritdoc
@inheritdoc <contract>
Copies all tags from the base function. The contract field contains the contract name.
Custom
@custom:<tag>
Custom tag with user-defined semantics. The name field contains the custom tag name.
Internal
@<tag>
Internal tags reserved for compiler purposes. The tag field contains the tag name.
Trait Implementations§
Source§impl Clone for NatSpecKind
impl Clone for NatSpecKind
Source§fn clone(&self) -> NatSpecKind
fn clone(&self) -> NatSpecKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NatSpecKind
Source§impl Debug for NatSpecKind
impl Debug for NatSpecKind
impl Eq for NatSpecKind
Source§impl PartialEq for NatSpecKind
impl PartialEq for NatSpecKind
Source§fn eq(&self, other: &NatSpecKind) -> bool
fn eq(&self, other: &NatSpecKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NatSpecKind
Auto Trait Implementations§
impl Freeze for NatSpecKind
impl RefUnwindSafe for NatSpecKind
impl Send for NatSpecKind
impl Sync for NatSpecKind
impl Unpin for NatSpecKind
impl UnsafeUnpin for NatSpecKind
impl UnwindSafe for NatSpecKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
fn equivalent(&self, key: &K) -> bool
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more