pub struct CallPrototype {
pub span: Span,
pub return_params: Vec<Parameter>,
pub placeholder: String,
pub params: Vec<Parameter>,
pub directives: Vec<FunctionDirective>,
}Fields§
§span: Span§return_params: Vec<Parameter>§placeholder: String§params: Vec<Parameter>§directives: Vec<FunctionDirective>Trait Implementations§
Source§impl Clone for CallPrototype
impl Clone for CallPrototype
Source§fn clone(&self) -> CallPrototype
fn clone(&self) -> CallPrototype
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 CallPrototype
impl Debug for CallPrototype
Source§impl PartialEq for CallPrototype
impl PartialEq for CallPrototype
Source§fn eq(&self, other: &CallPrototype) -> bool
fn eq(&self, other: &CallPrototype) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CallPrototype
Auto Trait Implementations§
impl Freeze for CallPrototype
impl RefUnwindSafe for CallPrototype
impl Send for CallPrototype
impl Sync for CallPrototype
impl Unpin for CallPrototype
impl UnsafeUnpin for CallPrototype
impl UnwindSafe for CallPrototype
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