#[repr(C)]pub struct err_state_st {
pub err_flags: [i32; 16],
pub err_marks: [i32; 16],
pub err_buffer: [u64; 16],
pub err_data: [*mut i8; 16],
pub err_data_size: [usize; 16],
pub err_data_flags: [i32; 16],
pub err_file: [*mut i8; 16],
pub err_line: [i32; 16],
pub err_func: [*mut i8; 16],
pub top: i32,
pub bottom: i32,
}
Fields§
§err_flags: [i32; 16]
§err_marks: [i32; 16]
§err_buffer: [u64; 16]
§err_data: [*mut i8; 16]
§err_data_size: [usize; 16]
§err_data_flags: [i32; 16]
§err_file: [*mut i8; 16]
§err_line: [i32; 16]
§err_func: [*mut i8; 16]
§top: i32
§bottom: i32
Trait Implementations§
Source§impl Clone for err_state_st
impl Clone for err_state_st
Source§fn clone(&self) -> err_state_st
fn clone(&self) -> err_state_st
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 err_state_st
impl Debug for err_state_st
impl Copy for err_state_st
Auto Trait Implementations§
impl Freeze for err_state_st
impl RefUnwindSafe for err_state_st
impl !Send for err_state_st
impl !Sync for err_state_st
impl Unpin for err_state_st
impl UnwindSafe for err_state_st
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