pub enum PukclReturnCode {
Ok,
Info(PukclReturnCodeInfo),
Warning(PukclReturnCodeWarning),
Severe(PukclReturnCodeSevere),
Unknown {
code: u16,
},
}
Expand description
An enum type that is a human readable representation of a low-level
c_abi::PukclReturnCode
type. Useful when used together with a Debug
traits and formatters.
Variants§
Trait Implementations§
Source§impl Clone for PukclReturnCode
impl Clone for PukclReturnCode
Source§fn clone(&self) -> PukclReturnCode
fn clone(&self) -> PukclReturnCode
Returns a copy 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 PukclReturnCode
impl Debug for PukclReturnCode
Source§impl From<PukclReturnCode> for PukclReturnCode
impl From<PukclReturnCode> for PukclReturnCode
Source§fn from(v: PukclReturnCode) -> Self
fn from(v: PukclReturnCode) -> Self
Converts to this type from the input type.
Source§impl From<PukclReturnCode> for PukclReturnCode
impl From<PukclReturnCode> for PukclReturnCode
Source§fn from(v: PukclReturnCode) -> Self
fn from(v: PukclReturnCode) -> Self
Converts to this type from the input type.
impl Copy for PukclReturnCode
Auto Trait Implementations§
impl Freeze for PukclReturnCode
impl RefUnwindSafe for PukclReturnCode
impl Send for PukclReturnCode
impl Sync for PukclReturnCode
impl Unpin for PukclReturnCode
impl UnwindSafe for PukclReturnCode
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