pub struct VerifyResult {
pub bound_count: usize,
pub partial_count: usize,
pub not_implemented_count: usize,
}Expand description
Result of binding verification.
Fields§
§bound_count: usizeNumber of bindings that got env vars set.
partial_count: usizeNumber of partial bindings (warnings).
not_implemented_count: usizeNumber of not-implemented bindings (errors or warnings depending on policy).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifyResult
impl RefUnwindSafe for VerifyResult
impl Send for VerifyResult
impl Sync for VerifyResult
impl Unpin for VerifyResult
impl UnsafeUnpin 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