pub struct NamedParenthesizedList {
pub key: Ident,
pub name: Option<Ident>,
pub values: Vec<Ident>,
}Expand description
Key/Value, where the value is a (optionally named) list of identifiers
UNION = (tbl_name[,tbl_name]...)
ENGINE = ReplicatedMergeTree('/table_name','{replica}', ver)
ENGINE = SummingMergeTree([columns])Fields§
§key: Ident§name: Option<Ident>§values: Vec<Ident>Trait Implementations§
Source§impl Clone for NamedParenthesizedList
impl Clone for NamedParenthesizedList
Source§fn clone(&self) -> NamedParenthesizedList
fn clone(&self) -> NamedParenthesizedList
Returns a duplicate of the value. Read more
1.0.0 · 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 NamedParenthesizedList
impl Debug for NamedParenthesizedList
Source§impl<'de> Deserialize<'de> for NamedParenthesizedList
impl<'de> Deserialize<'de> for NamedParenthesizedList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for NamedParenthesizedList
impl Hash for NamedParenthesizedList
Source§impl Ord for NamedParenthesizedList
impl Ord for NamedParenthesizedList
Source§fn cmp(&self, other: &NamedParenthesizedList) -> Ordering
fn cmp(&self, other: &NamedParenthesizedList) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NamedParenthesizedList
impl PartialEq for NamedParenthesizedList
Source§impl PartialOrd for NamedParenthesizedList
impl PartialOrd for NamedParenthesizedList
Source§impl Serialize for NamedParenthesizedList
impl Serialize for NamedParenthesizedList
Source§impl Visit for NamedParenthesizedList
impl Visit for NamedParenthesizedList
Source§impl VisitMut for NamedParenthesizedList
impl VisitMut for NamedParenthesizedList
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for NamedParenthesizedList
impl StructuralPartialEq for NamedParenthesizedList
Auto Trait Implementations§
impl Freeze for NamedParenthesizedList
impl RefUnwindSafe for NamedParenthesizedList
impl Send for NamedParenthesizedList
impl Sync for NamedParenthesizedList
impl Unpin for NamedParenthesizedList
impl UnwindSafe for NamedParenthesizedList
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