pub struct ColumnEntry {
pub definition: &'static str,
pub typical_range: &'static str,
pub what_abnormal_means: &'static str,
pub see_also: &'static [&'static str],
}Expand description
One per-iter column entry returned by [explain_column].
Fields§
§definition: &'static str§typical_range: &'static str§what_abnormal_means: &'static str§see_also: &'static [&'static str]Trait Implementations§
Source§impl Clone for ColumnEntry
impl Clone for ColumnEntry
Source§fn clone(&self) -> ColumnEntry
fn clone(&self) -> ColumnEntry
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 ColumnEntry
impl Debug for ColumnEntry
Auto Trait Implementations§
impl Freeze for ColumnEntry
impl RefUnwindSafe for ColumnEntry
impl Send for ColumnEntry
impl Sync for ColumnEntry
impl Unpin for ColumnEntry
impl UnsafeUnpin for ColumnEntry
impl UnwindSafe for ColumnEntry
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