#[repr(C)]pub struct zvec_error_details_t {
pub code: zvec_error_code_t,
pub message: *const c_char,
pub file: *const c_char,
pub line: c_int,
pub function: *const c_char,
}Expand description
Detailed error information including source location.
Fields§
§code: zvec_error_code_t§message: *const c_char§file: *const c_char§line: c_int§function: *const c_charAuto Trait Implementations§
impl !Send for zvec_error_details_t
impl !Sync for zvec_error_details_t
impl Freeze for zvec_error_details_t
impl RefUnwindSafe for zvec_error_details_t
impl Unpin for zvec_error_details_t
impl UnsafeUnpin for zvec_error_details_t
impl UnwindSafe for zvec_error_details_t
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