pub struct VerifyResult {
pub ok: bool,
pub error: Option<AshError>,
pub meta: Option<VerifyMeta>,
}Expand description
Result of high-level request verification.
Fields§
§ok: boolWhether the request passed all checks
error: Option<AshError>The error if verification failed (None if ok)
meta: Option<VerifyMeta>Debug metadata (only populated in debug builds)
Auto Trait Implementations§
impl Freeze for VerifyResult
impl RefUnwindSafe for VerifyResult
impl Send for VerifyResult
impl Sync for VerifyResult
impl Unpin for VerifyResult
impl UnwindSafe for VerifyResult
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