[−][src]Enum full_moon::ast::FunctionArgs
Arguments used for a function
Variants
Used when a function is called in the form of call(1, 2, 3)
Fields of Parentheses
parentheses: ContainedSpan<'a>The (...) part of (1, 2, 3)
arguments: Punctuated<'a, Expression<'a>>The 1, 2, 3 part of 1, 2, 3
String(Cow<'a, TokenReference<'a>>)Used when a function is called in the form of call "foobar"
TableConstructor(TableConstructor<'a>)Used when a function is called in the form of call { 1, 2, 3 }
Trait Implementations
impl<'a> Clone for FunctionArgs<'a>[src]
fn clone(&self) -> FunctionArgs<'a>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a> Debug for FunctionArgs<'a>[src]
impl<'de: 'a, 'a> Deserialize<'de> for FunctionArgs<'a>[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl<'a> Display for FunctionArgs<'a>[src]
impl<'a> Node<'a> for FunctionArgs<'a>[src]
fn start_position(&self) -> Option<Position>[src]
fn end_position(&self) -> Option<Position>[src]
fn similar(&self, other: &Self) -> bool[src]
fn tokens<'b>(&'b self) -> Tokens<'a, 'b>[src]
fn range(&self) -> Option<(Position, Position)>[src]
fn surrounding_trivia<'b>(
&'b self
) -> (Vec<Cow<'b, Token<'ast>>>, Vec<Cow<'b, Token<'ast>>>)[src]
&'b self
) -> (Vec<Cow<'b, Token<'ast>>>, Vec<Cow<'b, Token<'ast>>>)
impl<'a> Owned for FunctionArgs<'a>[src]
type Owned = FunctionArgs<'static>
What an owned version of the object looks like. Usually contains a 'static lifetime.
fn owned(&self) -> Self::Owned[src]
impl<'a> PartialEq<FunctionArgs<'a>> for FunctionArgs<'a>[src]
fn eq(&self, other: &FunctionArgs<'a>) -> bool[src]
fn ne(&self, other: &FunctionArgs<'a>) -> bool[src]
impl<'a> Serialize for FunctionArgs<'a>[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'a> StructuralPartialEq for FunctionArgs<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for FunctionArgs<'a>
impl<'a> Send for FunctionArgs<'a>
impl<'a> Sync for FunctionArgs<'a>
impl<'a> Unpin for FunctionArgs<'a>
impl<'a> UnwindSafe for FunctionArgs<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,