pub struct UnversionedValue {
pub id: u16,
pub aggregate: bool,
pub value: Value,
}Expand description
A value together with the column it belongs to.
Fields§
§id: u16An index into the rowset descriptor’s name table, not a column name.
aggregate: boolSet on values of aggregate columns; a plain write leaves it false.
value: ValueImplementations§
Trait Implementations§
Source§impl Clone for UnversionedValue
impl Clone for UnversionedValue
Source§fn clone(&self) -> UnversionedValue
fn clone(&self) -> UnversionedValue
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 UnversionedValue
impl Debug for UnversionedValue
Source§impl PartialEq for UnversionedValue
impl PartialEq for UnversionedValue
impl StructuralPartialEq for UnversionedValue
Auto Trait Implementations§
impl !Freeze for UnversionedValue
impl RefUnwindSafe for UnversionedValue
impl Send for UnversionedValue
impl Sync for UnversionedValue
impl Unpin for UnversionedValue
impl UnsafeUnpin for UnversionedValue
impl UnwindSafe for UnversionedValue
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