pub enum ParamType {
Regular(RegularParamType),
Error(ErrPtr),
}
Expand description
Syscall param type.
Variants§
Regular(RegularParamType)
Error(ErrPtr)
Trait Implementations§
Source§impl Ord for ParamType
impl Ord for ParamType
Source§impl PartialOrd for ParamType
impl PartialOrd for ParamType
impl Copy for ParamType
impl Eq for ParamType
impl StructuralPartialEq for ParamType
Auto Trait Implementations§
impl Freeze for ParamType
impl RefUnwindSafe for ParamType
impl Send for ParamType
impl Sync for ParamType
impl Unpin for ParamType
impl UnwindSafe for ParamType
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