pub struct LocalFunctionStatement { /* private fields */ }
Implementations§
Source§impl LocalFunctionStatement
impl LocalFunctionStatement
pub fn new( identifier: impl Into<Identifier>, block: Block, parameters: Vec<TypedIdentifier>, is_variadic: bool, ) -> Self
pub fn from_name( identifier: impl Into<Identifier>, block: impl Into<Block>, ) -> 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 mutate_tokens(&mut self) -> Option<&mut LocalFunctionTokens>
pub fn with_parameter(self, parameter: impl Into<TypedIdentifier>) -> Self
pub fn variadic(self) -> Self
pub fn with_variadic_type(self, type: impl Into<FunctionVariadicType>) -> Self
pub fn set_variadic_type(&mut self, type: impl Into<FunctionVariadicType>)
pub fn get_variadic_type(&self) -> Option<&FunctionVariadicType>
pub fn has_variadic_type(&self) -> bool
pub fn mutate_variadic_type(&mut self) -> Option<&mut FunctionVariadicType>
pub fn with_return_type( self, return_type: impl Into<FunctionReturnType>, ) -> Self
pub fn set_return_type(&mut self, return_type: impl Into<FunctionReturnType>)
pub fn get_return_type(&self) -> Option<&FunctionReturnType>
pub fn has_return_type(&self) -> bool
pub fn mutate_return_type(&mut self) -> Option<&mut FunctionReturnType>
pub fn with_generic_parameters( self, generic_parameters: GenericParameters, ) -> Self
pub fn set_generic_parameters(&mut self, generic_parameters: GenericParameters)
pub fn get_generic_parameters(&self) -> Option<&GenericParameters>
pub fn mutate_parameters(&mut self) -> &mut Vec<TypedIdentifier>
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<TypedIdentifier>
pub fn iter_parameters(&self) -> impl Iterator<Item = &TypedIdentifier>
pub fn iter_mut_parameters( &mut self, ) -> impl Iterator<Item = &mut TypedIdentifier>
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_types(&mut self)
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 for LocalFunctionStatement
impl PartialEq for LocalFunctionStatement
impl Eq for LocalFunctionStatement
impl StructuralPartialEq for LocalFunctionStatement
Auto Trait Implementations§
impl Freeze for LocalFunctionStatement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
Source§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
Source§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more