pub struct CallStatement {
pub token: Token,
pub routine: ObjectName,
pub arguments: Vec<CallArgumentSyntax>,
}Fields§
§token: Token§routine: ObjectName§arguments: Vec<CallArgumentSyntax>Trait Implementations§
Source§impl Clone for CallStatement
impl Clone for CallStatement
Source§fn clone(&self) -> CallStatement
fn clone(&self) -> CallStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CallStatement
impl Debug for CallStatement
Source§impl Display for CallStatement
impl Display for CallStatement
Source§impl PartialEq for CallStatement
impl PartialEq for CallStatement
impl StructuralPartialEq for CallStatement
Auto Trait Implementations§
impl Freeze for CallStatement
impl RefUnwindSafe for CallStatement
impl Send for CallStatement
impl Sync for CallStatement
impl Unpin for CallStatement
impl UnsafeUnpin for CallStatement
impl UnwindSafe for CallStatement
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