pub struct TableEngine {
pub name: String,
pub parameters: Option<Vec<Ident>>,
}
Expand description
Engine of DB. Some warehouse has parameters of engine, e.g. ClickHouse
Fields§
§name: String
§parameters: Option<Vec<Ident>>
Trait Implementations§
Source§impl Clone for TableEngine
impl Clone for TableEngine
Source§fn clone(&self) -> TableEngine
fn clone(&self) -> TableEngine
Returns a copy 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 TableEngine
impl Debug for TableEngine
Source§impl<'de> Deserialize<'de> for TableEngine
impl<'de> Deserialize<'de> for TableEngine
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 Display for TableEngine
impl Display for TableEngine
Source§impl Hash for TableEngine
impl Hash for TableEngine
Source§impl Ord for TableEngine
impl Ord for TableEngine
Source§fn cmp(&self, other: &TableEngine) -> Ordering
fn cmp(&self, other: &TableEngine) -> 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 TableEngine
impl PartialEq for TableEngine
Source§impl PartialOrd for TableEngine
impl PartialOrd for TableEngine
Source§impl Serialize for TableEngine
impl Serialize for TableEngine
Source§impl Visit for TableEngine
impl Visit for TableEngine
Source§impl VisitMut for TableEngine
impl VisitMut for TableEngine
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for TableEngine
impl StructuralPartialEq for TableEngine
Auto Trait Implementations§
impl Freeze for TableEngine
impl RefUnwindSafe for TableEngine
impl Send for TableEngine
impl Sync for TableEngine
impl Unpin for TableEngine
impl UnwindSafe for TableEngine
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