pub struct ColumnDiff {
pub name: String,
pub ch_type: String,
}Expand description
A column the kit declares that the live table is missing. ch_type is the
trusted ClickHouse type derived from the kit’s TableSpec, not from live.
Fields§
§name: String§ch_type: StringTrait Implementations§
Source§impl Clone for ColumnDiff
impl Clone for ColumnDiff
Source§fn clone(&self) -> ColumnDiff
fn clone(&self) -> ColumnDiff
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 ColumnDiff
impl Debug for ColumnDiff
impl Eq for ColumnDiff
Source§impl PartialEq for ColumnDiff
impl PartialEq for ColumnDiff
Source§fn eq(&self, other: &ColumnDiff) -> bool
fn eq(&self, other: &ColumnDiff) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnDiff
Auto Trait Implementations§
impl Freeze for ColumnDiff
impl RefUnwindSafe for ColumnDiff
impl Send for ColumnDiff
impl Sync for ColumnDiff
impl Unpin for ColumnDiff
impl UnsafeUnpin for ColumnDiff
impl UnwindSafe for ColumnDiff
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