pub struct NamedFun {
pub _fun: KeywordToken,
pub clauses: Clauses<NamedFunClause>,
pub _end: KeywordToken,
}Expand description
fun Clauses<NamedFunClause> end
Fields§
§_fun: KeywordToken§clauses: Clauses<NamedFunClause>§_end: KeywordTokenTrait Implementations§
Source§impl PositionRange for NamedFun
impl PositionRange for NamedFun
Source§fn start_position(&self) -> Position
fn start_position(&self) -> Position
Returns the (inclusive) start position of this.
Source§fn end_position(&self) -> Position
fn end_position(&self) -> Position
Returns the (exclusive) end position of this.
Auto Trait Implementations§
impl Freeze for NamedFun
impl RefUnwindSafe for NamedFun
impl Send for NamedFun
impl Sync for NamedFun
impl Unpin for NamedFun
impl UnwindSafe for NamedFun
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