pub struct IntermediateMeasure {
pub name: String,
pub sql_type: String,
pub nullable: bool,
}Expand description
Measure column definition
Fields§
§name: StringMeasure column name
sql_type: StringSQL data type of the measure
nullable: boolWhether the column can be NULL
Trait Implementations§
Source§impl Clone for IntermediateMeasure
impl Clone for IntermediateMeasure
Source§fn clone(&self) -> IntermediateMeasure
fn clone(&self) -> IntermediateMeasure
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 IntermediateMeasure
impl Debug for IntermediateMeasure
Source§impl<'de> Deserialize<'de> for IntermediateMeasure
impl<'de> Deserialize<'de> for IntermediateMeasure
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 PartialEq for IntermediateMeasure
impl PartialEq for IntermediateMeasure
Source§impl Serialize for IntermediateMeasure
impl Serialize for IntermediateMeasure
impl Eq for IntermediateMeasure
impl StructuralPartialEq for IntermediateMeasure
Auto Trait Implementations§
impl Freeze for IntermediateMeasure
impl RefUnwindSafe for IntermediateMeasure
impl Send for IntermediateMeasure
impl Sync for IntermediateMeasure
impl Unpin for IntermediateMeasure
impl UnwindSafe for IntermediateMeasure
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.