[][src]Struct rune::ast::PatObject

pub struct PatObject {
    pub ident: LitObjectIdent,
    pub open: OpenBrace,
    pub fields: Vec<(PatObjectItem, Option<Comma>)>,
    pub open_pattern: Option<DotDot>,
    pub close: CloseBrace,
}

An object pattern.

Fields

ident: LitObjectIdent

The identifier of the object pattern.

open: OpenBrace

The open object marker.

fields: Vec<(PatObjectItem, Option<Comma>)>

The fields matched against.

open_pattern: Option<DotDot>

Indicates if the pattern is open or not.

close: CloseBrace

The close brace.

Implementations

impl PatObject[src]

pub fn span(&self) -> Span[src]

Get the span of the pattern.

pub fn parse_with_ident(
    parser: &mut Parser<'_>,
    ident: LitObjectIdent
) -> Result<Self, ParseError>
[src]

Parse the object with an opening path.

Trait Implementations

impl Clone for PatObject[src]

impl Debug for PatObject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,