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 nullable: Option<bool>,
pub generated_or_default_column: Option<GeneratedOrDefaultColumn>,
}Fields§
§column_type: Option<DataType>§column_id: i32§name: Stringwe 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: i32deprecated, use AdditionalColumn instead, keep for compatibility with v1.6.x
version: i32§additional_column: Option<AdditionalColumn>§nullable: Option<bool>§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_nullable(&self) -> Result<&bool, 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 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 ColumnDescTestExt for ColumnDesc
impl ColumnDescTestExt for ColumnDesc
Source§fn new(data_type: DataType, name: &str, column_id: i32) -> ColumnDesc
fn new(data_type: DataType, name: &str, column_id: i32) -> ColumnDesc
Create a
ColumnDesc with the given name and type. Read moreSource§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(prost: &ColumnDesc) -> ColumnDesc
fn from(prost: &ColumnDesc) -> ColumnDesc
Converts to this type from the input type.
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 From<ColumnDesc> for ColumnDesc
impl From<ColumnDesc> for ColumnDesc
Source§fn from(prost: ColumnDesc) -> ColumnDesc
fn from(prost: 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,
§impl<T> Code for Twhere
T: Serialize + DeserializeOwned,
impl<T> Code for Twhere
T: Serialize + DeserializeOwned,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any.§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<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.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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().