pub struct HumanViewDef {
pub schema_id: String,
pub columns: Vec<TableColumn>,
}Expand description
Human view definition keyed by schema id.
Fields§
§schema_id: StringSchema id, usually the command path.
columns: Vec<TableColumn>Columns rendered for matching object or list data.
Implementations§
Source§impl HumanViewDef
impl HumanViewDef
Trait Implementations§
Source§impl Clone for HumanViewDef
impl Clone for HumanViewDef
Source§fn clone(&self) -> HumanViewDef
fn clone(&self) -> HumanViewDef
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 HumanViewDef
impl Debug for HumanViewDef
Source§impl PartialEq for HumanViewDef
impl PartialEq for HumanViewDef
Source§fn eq(&self, other: &HumanViewDef) -> bool
fn eq(&self, other: &HumanViewDef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for HumanViewDef
impl StructuralPartialEq for HumanViewDef
Auto Trait Implementations§
impl Freeze for HumanViewDef
impl RefUnwindSafe for HumanViewDef
impl Send for HumanViewDef
impl Sync for HumanViewDef
impl Unpin for HumanViewDef
impl UnsafeUnpin for HumanViewDef
impl UnwindSafe for HumanViewDef
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