pub struct LocalAssignment { /* private fields */ }
Expand description

An assignment to a local variable, such as local x = 1

Implementations§

source§

impl LocalAssignment

source

pub fn new(name_list: Punctuated<TokenReference>) -> Self

Returns a new LocalAssignment from the given name list

source

pub fn local_token(&self) -> &TokenReference

The local token

source

pub fn equal_token(&self) -> Option<&TokenReference>

The = token in between local x = y, if one exists

source

pub fn expressions(&self) -> &Punctuated<Expression>

Returns the punctuated sequence of the expressions being assigned. This is the 1, 2 part of local x, y = 1, 2

source

pub fn names(&self) -> &Punctuated<TokenReference>

Returns the punctuated sequence of names being assigned to. This is the x, y part of local x, y = 1, 2

source

pub fn type_specifiers(&self) -> impl Iterator<Item = Option<&TypeSpecifier>>

Available on crate feature roblox only.

The type specifiers of the variables, in the order that they were assigned. local foo: number, bar, baz: boolean returns an iterator containing: Some(TypeSpecifier(number)), None, Some(TypeSpecifier(boolean)) Only available when the “roblox” feature flag is enabled.

source

pub fn attributes(&self) -> impl Iterator<Item = Option<&Attribute>>

Available on crate feature lua54 only.

The attributes specified for the variables, in the order that they were assigned. local foo <const>, bar, baz <close> returns an iterator containing: Some(Attribute("const")), None, Some(Attribute("close")) Only available when the “lua54” feature flag is enabled.

source

pub fn with_local_token(self, local_token: TokenReference) -> Self

Returns a new LocalAssignment with the given local token

source

pub fn with_type_specifiers( self, type_specifiers: Vec<Option<TypeSpecifier>> ) -> Self

Available on crate feature roblox only.

Returns a new LocalAssignment with the given type specifiers

source

pub fn with_attributes(self, attributes: Vec<Option<Attribute>>) -> Self

Available on crate feature lua54 only.

Returns a new LocalAssignment with the given attributes

source

pub fn with_names(self, name_list: Punctuated<TokenReference>) -> Self

Returns a new LocalAssignment with the given name list

source

pub fn with_equal_token(self, equal_token: Option<TokenReference>) -> Self

Returns a new LocalAssignment with the given = token

source

pub fn with_expressions(self, expr_list: Punctuated<Expression>) -> Self

Returns a new LocalAssignment with the given expression list

Trait Implementations§

source§

impl Clone for LocalAssignment

source§

fn clone(&self) -> LocalAssignment

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LocalAssignment

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for LocalAssignment

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for LocalAssignment

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Node for LocalAssignment

source§

fn start_position(&self) -> Option<Position>

The start position of a node. None if can’t be determined
source§

fn end_position(&self) -> Option<Position>

The end position of a node. None if it can’t be determined
source§

fn similar(&self, other: &Self) -> bool

Whether another node of the same type is the same as this one semantically, ignoring position
source§

fn tokens<'a>(&'a self) -> Tokens<'a>

The token references that comprise a node
source§

fn range(&self) -> Option<(Position, Position)>

The full range of a node, if it has both start and end positions
source§

fn surrounding_trivia(&self) -> (Vec<&Token>, Vec<&Token>)

The tokens surrounding a node that are ignored and not accessible through the node’s own accessors. Use this if you want to get surrounding comments or whitespace. Returns a tuple of the leading and trailing trivia.
source§

impl PartialEq for LocalAssignment

source§

fn eq(&self, other: &LocalAssignment) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for LocalAssignment

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for LocalAssignment

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,