Struct erl_parse::cst::clauses::SpecClause
[−]
[src]
pub struct SpecClause {
pub args: Args<Type>,
pub _arrow: SymbolToken,
pub return_type: Type,
pub constraints: Option<Constraints>,
}Args<Type> -> Type Option<Constraints>
Fields
args: Args<Type>
_arrow: SymbolToken
return_type: Type
constraints: Option<Constraints>
Trait Implementations
impl Debug for SpecClause[src]
impl Clone for SpecClause[src]
fn clone(&self) -> SpecClause[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Parse for SpecClause[src]
fn parse<T>(parser: &mut Parser<T>) -> Result<Self> where
T: TokenRead, [src]
T: TokenRead,
fn parse_non_left_recor<T>(parser: &mut Parser<T>) -> Result<Self> where
T: TokenRead, [src]
T: TokenRead,
impl PositionRange for SpecClause[src]
fn start_position(&self) -> Position[src]
Returns the (inclusive) start position of this.
fn end_position(&self) -> Position[src]
Returns the (exclusive) end position of this.