#[repr(C, packed(1))]pub struct ErrorWithSignalCode {
pub error_code: ErrorCode,
pub signal_code: SignalCode,
}
Expand description
Represents type defining concatenated signal code with length. 8 bytes.
Fields§
§error_code: ErrorCode
§signal_code: SignalCode
Implementations§
Source§impl ErrorWithSignalCode
impl ErrorWithSignalCode
pub fn as_mut_ptr(&mut self) -> *mut Self
Trait Implementations§
Source§impl Debug for ErrorWithSignalCode
impl Debug for ErrorWithSignalCode
Source§impl Default for ErrorWithSignalCode
impl Default for ErrorWithSignalCode
Source§fn default() -> ErrorWithSignalCode
fn default() -> ErrorWithSignalCode
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ErrorWithSignalCode
impl RefUnwindSafe for ErrorWithSignalCode
impl Send for ErrorWithSignalCode
impl Sync for ErrorWithSignalCode
impl Unpin for ErrorWithSignalCode
impl UnwindSafe for ErrorWithSignalCode
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