pub struct PointerValidationResult {
pub errors: Vec<String>,
pub warnings: Vec<String>,
pub stats: PointerValidationStats,
}Expand description
Result of MMDB data section pointer validation
Fields§
§errors: Vec<String>Errors found
warnings: Vec<String>Warnings found
stats: PointerValidationStatsStatistics
Implementations§
Trait Implementations§
Source§impl Clone for PointerValidationResult
impl Clone for PointerValidationResult
Source§fn clone(&self) -> PointerValidationResult
fn clone(&self) -> PointerValidationResult
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 PointerValidationResult
impl Debug for PointerValidationResult
Auto Trait Implementations§
impl Freeze for PointerValidationResult
impl RefUnwindSafe for PointerValidationResult
impl Send for PointerValidationResult
impl Sync for PointerValidationResult
impl Unpin for PointerValidationResult
impl UnwindSafe for PointerValidationResult
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