pub enum PureParam {
SelfValue {
is_ref: bool,
is_mut: bool,
},
Typed {
name: String,
ty: PureType,
},
}Expand description
Function parameter.
Variants§
Trait Implementations§
impl Eq for PureParam
impl StructuralPartialEq for PureParam
Auto Trait Implementations§
impl Freeze for PureParam
impl RefUnwindSafe for PureParam
impl Send for PureParam
impl Sync for PureParam
impl Unpin for PureParam
impl UnsafeUnpin for PureParam
impl UnwindSafe for PureParam
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