[][src]Struct full_moon::ast::Assignment

pub struct Assignment<'a> { /* fields omitted */ }

An assignment, such as x = y. Not used for LocalAssignments

Methods

impl<'a> Assignment<'a>[src]

pub fn new(
    var_list: Punctuated<'a, Var<'a>>,
    expr_list: Punctuated<'a, Expression<'a>>
) -> Self
[src]

Returns a new Assignment from the given variable and expression list

pub fn expr_list(&self) -> &Punctuated<'a, Expression<'a>>[src]

Returns the Punctuated sequence over the expressions being assigned. This is the the 1, 2 part of x, y["a"] = 1, 2

pub fn equal_token(&self) -> &TokenReference<'a>[src]

The = token in between x = y

pub fn var_list(&self) -> &Punctuated<'a, Var<'a>>[src]

Returns the Punctuated sequence over the variables being assigned to. This is the x, y["a"] part of x, y["a"] = 1, 2

pub fn with_var_list(self, var_list: Punctuated<'a, Var<'a>>) -> Self[src]

Returns a new Assignment with the given var list

pub fn with_equal_token(self, equal_token: Cow<'a, TokenReference<'a>>) -> Self[src]

Returns a new Assignment with the given = token

pub fn with_expr_list(self, expr_list: Punctuated<'a, Expression<'a>>) -> Self[src]

Returns a new Assignment with the given expressions

Trait Implementations

impl<'a> Clone for Assignment<'a>[src]

impl<'a> Debug for Assignment<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Assignment<'a>[src]

impl<'a> Display for Assignment<'a>[src]

impl<'a> Node<'a> for Assignment<'a>[src]

impl<'a> Owned for Assignment<'a>[src]

type Owned = Assignment<'static>

What an owned version of the object looks like. Usually contains a 'static lifetime.

impl<'a> PartialEq<Assignment<'a>> for Assignment<'a>[src]

impl<'a> Serialize for Assignment<'a>[src]

impl<'a> StructuralPartialEq for Assignment<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Assignment<'a>

impl<'a> Send for Assignment<'a>

impl<'a> Sync for Assignment<'a>

impl<'a> Unpin for Assignment<'a>

impl<'a> UnwindSafe for Assignment<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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.