pub struct Bind<'tree> {
pub span: Span,
pub arrow: Option<BindArrow>,
pub binds: Option<LocalBinds<'tree>>,
pub expression: Option<BindExpression<'tree>>,
pub implicit: Option<ImplicitVariable<'tree>>,
pub match: Vec<Match<'tree>>,
pub name: Option<BindName<'tree>>,
pub pattern: Option<BindPattern<'tree>>,
}Fields§
§span: Span§arrow: Option<BindArrow>§binds: Option<LocalBinds<'tree>>§expression: Option<BindExpression<'tree>>§implicit: Option<ImplicitVariable<'tree>>§match: Vec<Match<'tree>>§name: Option<BindName<'tree>>§pattern: Option<BindPattern<'tree>>Trait Implementations§
Auto Trait Implementations§
impl<'tree> Freeze for Bind<'tree>
impl<'tree> RefUnwindSafe for Bind<'tree>
impl<'tree> Send for Bind<'tree>
impl<'tree> Sync for Bind<'tree>
impl<'tree> Unpin for Bind<'tree>
impl<'tree> UnsafeUnpin for Bind<'tree>
impl<'tree> UnwindSafe for Bind<'tree>
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