pub struct ValidatedTable {
pub name: String,
pub rows: Vec<ValidatedRow>,
}Expand description
A validated table of rows
Fields§
§name: String§rows: Vec<ValidatedRow>Implementations§
Trait Implementations§
Source§impl Clone for ValidatedTable
impl Clone for ValidatedTable
Source§fn clone(&self) -> ValidatedTable
fn clone(&self) -> ValidatedTable
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 ValidatedTable
impl Debug for ValidatedTable
Auto Trait Implementations§
impl Freeze for ValidatedTable
impl RefUnwindSafe for ValidatedTable
impl Send for ValidatedTable
impl Sync for ValidatedTable
impl Unpin for ValidatedTable
impl UnwindSafe for ValidatedTable
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