pub struct FunctionExpression { /* private fields */ }
Implementations§
Source§impl FunctionExpression
impl FunctionExpression
pub fn new( block: Block, parameters: Vec<TypedIdentifier>, is_variadic: bool, ) -> Self
pub fn from_block<B: Into<Block>>(block: B) -> Self
pub fn with_parameters(self, parameters: Vec<TypedIdentifier>) -> Self
pub fn with_parameter(self, parameter: impl Into<TypedIdentifier>) -> Self
pub fn with_variadic_type(self, type: impl Into<FunctionVariadicType>) -> Self
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 variadic(self) -> Self
pub fn set_variadic(&mut self, is_variadic: bool)
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_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 is_generic(&self) -> bool
pub fn with_tokens(self, tokens: FunctionBodyTokens) -> Self
pub fn set_tokens(&mut self, tokens: FunctionBodyTokens)
pub fn get_tokens(&self) -> Option<&FunctionBodyTokens>
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 is_variadic(&self) -> bool
pub fn mutate_block(&mut self) -> &mut Block
pub fn mutate_parameters(&mut self) -> &mut Vec<TypedIdentifier>
pub fn parameters_count(&self) -> usize
pub fn has_parameters(&self) -> bool
pub fn clear_types(&mut self)
pub fn clear_comments(&mut self)
pub fn clear_whitespaces(&mut self)
Trait Implementations§
Source§impl Clone for FunctionExpression
impl Clone for FunctionExpression
Source§fn clone(&self) -> FunctionExpression
fn clone(&self) -> FunctionExpression
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 FunctionExpression
impl Debug for FunctionExpression
Source§impl Default for FunctionExpression
impl Default for FunctionExpression
Source§fn default() -> FunctionExpression
fn default() -> FunctionExpression
Returns the “default value” for a type. Read more
Source§impl From<FunctionExpression> for Expression
impl From<FunctionExpression> for Expression
Source§fn from(function: FunctionExpression) -> Self
fn from(function: FunctionExpression) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FunctionExpression
impl PartialEq for FunctionExpression
impl Eq for FunctionExpression
impl StructuralPartialEq for FunctionExpression
Auto Trait Implementations§
impl Freeze for FunctionExpression
impl RefUnwindSafe for FunctionExpression
impl Send for FunctionExpression
impl Sync for FunctionExpression
impl Unpin for FunctionExpression
impl UnwindSafe for FunctionExpression
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