Struct darklua_core::nodes::LocalFunctionStatement
source · [−]pub struct LocalFunctionStatement { /* private fields */ }Implementations
sourceimpl LocalFunctionStatement
impl LocalFunctionStatement
pub fn new(
identifier: Identifier,
block: Block,
parameters: Vec<Identifier>,
is_variadic: bool
) -> Self
pub fn from_name<S: Into<Identifier>, B: Into<Block>>(
identifier: S,
block: B
) -> Self
pub fn with_tokens(self, tokens: LocalFunctionTokens) -> Self
pub fn set_tokens(&mut self, tokens: LocalFunctionTokens)
pub fn get_tokens(&self) -> Option<&LocalFunctionTokens>
pub fn with_parameter<S: Into<Identifier>>(self, parameter: S) -> Self
pub fn variadic(self) -> Self
pub fn mutate_parameters(&mut self) -> &mut Vec<Identifier>
pub fn mutate_block(&mut self) -> &mut Block
pub fn mutate_identifier(&mut self) -> &mut Identifier
pub fn get_block(&self) -> &Block
pub fn get_parameters(&self) -> &Vec<Identifier>
pub fn iter_parameters(&self) -> impl Iterator<Item = &Identifier>
pub fn get_identifier(&self) -> &Identifier
pub fn get_name(&self) -> &str
pub fn has_parameter(&self, name: &str) -> bool
pub fn has_parameters(&self) -> bool
pub fn is_variadic(&self) -> bool
pub fn parameters_count(&self) -> usize
pub fn clear_comments(&mut self)
pub fn clear_whitespaces(&mut self)
Trait Implementations
sourceimpl Clone for LocalFunctionStatement
impl Clone for LocalFunctionStatement
sourcefn clone(&self) -> LocalFunctionStatement
fn clone(&self) -> LocalFunctionStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LocalFunctionStatement
impl Debug for LocalFunctionStatement
sourceimpl From<LocalFunctionStatement> for Statement
impl From<LocalFunctionStatement> for Statement
sourcefn from(function: LocalFunctionStatement) -> Statement
fn from(function: LocalFunctionStatement) -> Statement
Converts to this type from the input type.
sourceimpl PartialEq<LocalFunctionStatement> for LocalFunctionStatement
impl PartialEq<LocalFunctionStatement> for LocalFunctionStatement
sourcefn eq(&self, other: &LocalFunctionStatement) -> bool
fn eq(&self, other: &LocalFunctionStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LocalFunctionStatement) -> bool
fn ne(&self, other: &LocalFunctionStatement) -> bool
This method tests for !=.
impl Eq for LocalFunctionStatement
impl StructuralEq for LocalFunctionStatement
impl StructuralPartialEq for LocalFunctionStatement
Auto Trait Implementations
impl RefUnwindSafe for LocalFunctionStatement
impl Send for LocalFunctionStatement
impl Sync for LocalFunctionStatement
impl Unpin for LocalFunctionStatement
impl UnwindSafe for LocalFunctionStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more