pub enum GenericArg {
Type(TypeExpr),
Nat(NatExpr),
}Expand description
Generic argument at an expression call site.
Variants§
Trait Implementations§
Source§impl Clone for GenericArg
impl Clone for GenericArg
Source§fn clone(&self) -> GenericArg
fn clone(&self) -> GenericArg
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 moreAuto Trait Implementations§
impl Freeze for GenericArg
impl RefUnwindSafe for GenericArg
impl Send for GenericArg
impl Sync for GenericArg
impl Unpin for GenericArg
impl UnsafeUnpin for GenericArg
impl UnwindSafe for GenericArg
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