Enum Result
#[repr(u32)]pub enum Result {
Success = 0,
IncompleteInput = 1,
ErrorInInput = 2,
InvalidConversion = 3,
InvalidScale = 4,
InvalidParameters = 5,
InvalidInput = 6,
CouldNotRewind = 7,
InternalError = 8,
Unimplemented = 9,
}
Variants§
Success = 0
IncompleteInput = 1
ErrorInInput = 2
InvalidConversion = 3
InvalidScale = 4
InvalidParameters = 5
InvalidInput = 6
CouldNotRewind = 7
InternalError = 8
Unimplemented = 9
Trait Implementations§
§impl Clone for SkCodec_Result
impl Clone for SkCodec_Result
§fn clone(&self) -> SkCodec_Result
fn clone(&self) -> SkCodec_Result
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 more§impl Debug for SkCodec_Result
impl Debug for SkCodec_Result
§impl Hash for SkCodec_Result
impl Hash for SkCodec_Result
§impl PartialEq for SkCodec_Result
impl PartialEq for SkCodec_Result
impl Copy for SkCodec_Result
impl Eq for SkCodec_Result
impl StructuralPartialEq for SkCodec_Result
Auto Trait Implementations§
impl Freeze for SkCodec_Result
impl RefUnwindSafe for SkCodec_Result
impl Send for SkCodec_Result
impl Sync for SkCodec_Result
impl Unpin for SkCodec_Result
impl UnwindSafe for SkCodec_Result
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