Struct darklua_core::nodes::LocalFunctionStatement
source · pub struct LocalFunctionStatement { /* private fields */ }Implementations§
source§impl 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§
source§impl Clone for LocalFunctionStatement
impl Clone for LocalFunctionStatement
source§fn clone(&self) -> LocalFunctionStatement
fn clone(&self) -> LocalFunctionStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LocalFunctionStatement
impl Debug for LocalFunctionStatement
source§impl From<LocalFunctionStatement> for Statement
impl From<LocalFunctionStatement> for Statement
source§fn from(function: LocalFunctionStatement) -> Statement
fn from(function: LocalFunctionStatement) -> Statement
Converts to this type from the input type.
source§impl PartialEq<LocalFunctionStatement> for LocalFunctionStatement
impl PartialEq<LocalFunctionStatement> for LocalFunctionStatement
source§fn 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 ==.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§
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