pub struct FunctionCallStatement {
pub attributes: Vec<Attribute>,
pub call: FunctionCall,
}
Fields§
§attributes: Vec<Attribute>
§call: FunctionCall
Trait Implementations§
Source§impl Clone for FunctionCallStatement
impl Clone for FunctionCallStatement
Source§fn clone(&self) -> FunctionCallStatement
fn clone(&self) -> FunctionCallStatement
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 FunctionCallStatement
impl Debug for FunctionCallStatement
Source§impl Decorated for FunctionCallStatement
impl Decorated for FunctionCallStatement
Source§fn attributes(&self) -> &[Attribute]
fn attributes(&self) -> &[Attribute]
List all attributes (
@name
) of a syntax node.Source§fn attributes_mut(&mut self) -> &mut [Attribute]
fn attributes_mut(&mut self) -> &mut [Attribute]
List all attributes (
@name
) of a syntax node.Source§impl Display for FunctionCallStatement
impl Display for FunctionCallStatement
Source§impl From<FunctionCall> for FunctionCallStatement
impl From<FunctionCall> for FunctionCallStatement
Source§fn from(call: FunctionCall) -> FunctionCallStatement
fn from(call: FunctionCall) -> FunctionCallStatement
Converts to this type from the input type.
Source§impl From<FunctionCallStatement> for Statement
impl From<FunctionCallStatement> for Statement
Source§fn from(value: FunctionCallStatement) -> Statement
fn from(value: FunctionCallStatement) -> Statement
Converts to this type from the input type.
Source§impl PartialEq for FunctionCallStatement
impl PartialEq for FunctionCallStatement
impl StructuralPartialEq for FunctionCallStatement
Auto Trait Implementations§
impl Freeze for FunctionCallStatement
impl RefUnwindSafe for FunctionCallStatement
impl Send for FunctionCallStatement
impl Sync for FunctionCallStatement
impl Unpin for FunctionCallStatement
impl UnwindSafe for FunctionCallStatement
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<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 more