pub struct WalInspection {
pub segment: String,
pub rows: Vec<WalInspectionRow>,
pub warnings: Vec<WalWarning>,
}Fields§
§segment: String§rows: Vec<WalInspectionRow>§warnings: Vec<WalWarning>Trait Implementations§
Source§impl Clone for WalInspection
impl Clone for WalInspection
Source§fn clone(&self) -> WalInspection
fn clone(&self) -> WalInspection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WalInspection
impl Debug for WalInspection
Source§impl Default for WalInspection
impl Default for WalInspection
Source§fn default() -> WalInspection
fn default() -> WalInspection
Returns the “default value” for a type. Read more
impl Eq for WalInspection
Source§impl PartialEq for WalInspection
impl PartialEq for WalInspection
Source§fn eq(&self, other: &WalInspection) -> bool
fn eq(&self, other: &WalInspection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WalInspection
Auto Trait Implementations§
impl Freeze for WalInspection
impl RefUnwindSafe for WalInspection
impl Send for WalInspection
impl Sync for WalInspection
impl Unpin for WalInspection
impl UnsafeUnpin for WalInspection
impl UnwindSafe for WalInspection
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