#[repr(C)]pub struct ovrErrorInfo {
pub Result: ovrResult,
pub ErrorString: [c_char; 512],
}Expand description
Provides information about the last error.
Fields§
§Result: ovrResultThe result from the last API call that generated an error ovrResult.
ErrorString: [c_char; 512]A UTF8-encoded null-terminated English string describing the problem. The format of this string is subject to change in future versions.
Trait Implementations§
Source§impl Clone for ovrErrorInfo
impl Clone for ovrErrorInfo
Source§fn clone(&self) -> ovrErrorInfo
fn clone(&self) -> ovrErrorInfo
Returns a duplicate 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 ovrErrorInfo
impl Debug for ovrErrorInfo
impl Copy for ovrErrorInfo
Auto Trait Implementations§
impl Freeze for ovrErrorInfo
impl RefUnwindSafe for ovrErrorInfo
impl Send for ovrErrorInfo
impl Sync for ovrErrorInfo
impl Unpin for ovrErrorInfo
impl UnwindSafe for ovrErrorInfo
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