pub struct CallSignature {
pub name: String,
pub tplt: Option<Vec<TpltParam>>,
pub args: Vec<Type>,
}Expand description
Function call signature.
Fields§
§name: String§tplt: Option<Vec<TpltParam>>§args: Vec<Type>Trait Implementations§
Source§impl Clone for CallSignature
impl Clone for CallSignature
Source§fn clone(&self) -> CallSignature
fn clone(&self) -> CallSignature
Returns a duplicate 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 CallSignature
impl Debug for CallSignature
Source§impl Display for CallSignature
impl Display for CallSignature
Source§impl PartialEq for CallSignature
impl PartialEq for CallSignature
impl StructuralPartialEq for CallSignature
Auto Trait Implementations§
impl Freeze for CallSignature
impl !RefUnwindSafe for CallSignature
impl !Send for CallSignature
impl !Sync for CallSignature
impl Unpin for CallSignature
impl !UnwindSafe for CallSignature
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