pub struct ColumnOverride {
pub owned: Option<String>,
pub borrowed: Option<String>,
pub copy_cheap: bool,
}Expand description
Per-column override stored separately from the type-level map.
Fields§
§owned: Option<String>§borrowed: Option<String>§copy_cheap: boolTrait Implementations§
Source§impl Clone for ColumnOverride
impl Clone for ColumnOverride
Source§fn clone(&self) -> ColumnOverride
fn clone(&self) -> ColumnOverride
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 moreAuto Trait Implementations§
impl Freeze for ColumnOverride
impl RefUnwindSafe for ColumnOverride
impl Send for ColumnOverride
impl Sync for ColumnOverride
impl Unpin for ColumnOverride
impl UnsafeUnpin for ColumnOverride
impl UnwindSafe for ColumnOverride
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