#[repr(C)]pub struct FizzyError {
pub code: FizzyErrorCode,
pub message: [c_char; 256],
}Expand description
Error information.
Fields§
§code: FizzyErrorCodeError code.
message: [c_char; 256]NULL-terminated error message.
Trait Implementations§
Source§impl Clone for FizzyError
impl Clone for FizzyError
Source§fn clone(&self) -> FizzyError
fn clone(&self) -> FizzyError
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 moreimpl Copy for FizzyError
Source§impl Debug for FizzyError
impl Debug for FizzyError
Auto Trait Implementations§
impl Freeze for FizzyError
impl RefUnwindSafe for FizzyError
impl Send for FizzyError
impl Sync for FizzyError
impl Unpin for FizzyError
impl UnsafeUnpin for FizzyError
impl UnwindSafe for FizzyError
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