pub struct ColumnDesc {
pub column_type: Option<DataType>,
pub column_id: i32,
pub name: String,
pub description: Option<String>,
pub additional_column_type: i32,
pub version: i32,
pub additional_column: Option<AdditionalColumn>,
pub generated_or_default_column: Option<GeneratedOrDefaultColumn>,
}
Fields§
§column_type: Option<DataType>
§column_id: i32
§name: String
we store the column name in column desc now just for debug, but in future we should store it in ColumnCatalog but not here
description: Option<String>
This field is used to store the description set by the comment on
clause.
additional_column_type: i32
deprecated, use AdditionalColumn instead, keep for compatibility with v1.6.x
version: i32
§additional_column: Option<AdditionalColumn>
§generated_or_default_column: Option<GeneratedOrDefaultColumn>
Optional description for the generated column or default value.
Implementations§
source§impl ColumnDesc
impl ColumnDesc
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the value of description
, or the default value if description
is unset.
sourcepub fn additional_column_type(&self) -> AdditionalColumnType
pub fn additional_column_type(&self) -> AdditionalColumnType
Returns the enum value of additional_column_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_additional_column_type(&mut self, value: AdditionalColumnType)
pub fn set_additional_column_type(&mut self, value: AdditionalColumnType)
Sets additional_column_type
to the provided enum value.
sourcepub fn version(&self) -> ColumnDescVersion
pub fn version(&self) -> ColumnDescVersion
Returns the enum value of version
, or the default if the field is set to an invalid enum value.
sourcepub fn set_version(&mut self, value: ColumnDescVersion)
pub fn set_version(&mut self, value: ColumnDescVersion)
Sets version
to the provided enum value.
source§impl ColumnDesc
impl ColumnDesc
pub fn get_column_type(&self) -> Result<&DataType, PbFieldNotFound>
pub fn get_column_id(&self) -> i32
pub fn get_name(&self) -> &String
pub fn get_description(&self) -> Result<&String, PbFieldNotFound>
pub fn get_additional_column_type( &self, ) -> Result<AdditionalColumnType, PbFieldNotFound>
pub fn get_version(&self) -> Result<ColumnDescVersion, PbFieldNotFound>
pub fn get_additional_column( &self, ) -> Result<&AdditionalColumn, PbFieldNotFound>
pub fn get_generated_or_default_column( &self, ) -> Result<&GeneratedOrDefaultColumn, PbFieldNotFound>
Trait Implementations§
source§impl Clone for ColumnDesc
impl Clone for ColumnDesc
source§fn clone(&self) -> ColumnDesc
fn clone(&self) -> ColumnDesc
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 ColumnDescTestExt for ColumnDesc
impl ColumnDescTestExt for ColumnDesc
source§fn new_atomic(data_type: DataType, name: &str, column_id: i32) -> ColumnDesc
fn new_atomic(data_type: DataType, name: &str, column_id: i32) -> ColumnDesc
Create a
ColumnDesc
with the given name and type. Read moresource§fn new_struct(
name: &str,
column_id: i32,
_type_name: &str,
fields: Vec<ColumnDesc>,
) -> ColumnDesc
fn new_struct( name: &str, column_id: i32, _type_name: &str, fields: Vec<ColumnDesc>, ) -> ColumnDesc
source§impl Debug for ColumnDesc
impl Debug for ColumnDesc
source§impl Default for ColumnDesc
impl Default for ColumnDesc
source§fn default() -> ColumnDesc
fn default() -> ColumnDesc
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ColumnDesc
impl<'de> Deserialize<'de> for ColumnDesc
source§fn deserialize<D>(
deserializer: D,
) -> Result<ColumnDesc, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<ColumnDesc, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&ColumnDesc> for ColumnDesc
impl From<&ColumnDesc> for ColumnDesc
source§fn from(c: &ColumnDesc) -> ColumnDesc
fn from(c: &ColumnDesc) -> ColumnDesc
Converts to this type from the input type.
source§impl Hash for ColumnDesc
impl Hash for ColumnDesc
source§impl Message for ColumnDesc
impl Message for ColumnDesc
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.source§impl PartialEq for ColumnDesc
impl PartialEq for ColumnDesc
source§impl Serialize for ColumnDesc
impl Serialize for ColumnDesc
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ColumnDesc
impl StructuralPartialEq for ColumnDesc
Auto Trait Implementations§
impl Freeze for ColumnDesc
impl RefUnwindSafe for ColumnDesc
impl Send for ColumnDesc
impl Sync for ColumnDesc
impl Unpin for ColumnDesc
impl UnwindSafe for ColumnDesc
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
source§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
source§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level
.source§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
.source§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
Equivalent to
RelabeledMetricVec::with_metric_level_relabel_n
with metric_level
set to
MetricLevel::Debug
and relabel_num
set to 1.source§impl<T> SameOrElseExt for Twhere
T: Eq,
impl<T> SameOrElseExt for Twhere
T: Eq,
source§fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
Check if
self
and other
are equal, if so, return self
, otherwise return the result of f()
.