Struct perspective_client::proto::TableValidateExprResp
source · pub struct TableValidateExprResp {
pub expression_schema: HashMap<String, i32>,
pub errors: HashMap<String, ExprValidationError>,
pub expression_alias: HashMap<String, String>,
}Fields§
§expression_schema: HashMap<String, i32>§errors: HashMap<String, ExprValidationError>§expression_alias: HashMap<String, String>Implementations§
source§impl TableValidateExprResp
impl TableValidateExprResp
sourcepub fn get_expression_schema(&self, key: &str) -> Option<ColumnType>
pub fn get_expression_schema(&self, key: &str) -> Option<ColumnType>
Returns the enum value for the corresponding key in expression_schema, or None if the entry does not exist or it is not a valid enum value.
sourcepub fn insert_expression_schema(
&mut self,
key: String,
value: ColumnType,
) -> Option<ColumnType>
pub fn insert_expression_schema( &mut self, key: String, value: ColumnType, ) -> Option<ColumnType>
Inserts a key value pair into expression_schema.
Trait Implementations§
source§impl Clone for TableValidateExprResp
impl Clone for TableValidateExprResp
source§fn clone(&self) -> TableValidateExprResp
fn clone(&self) -> TableValidateExprResp
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 TableValidateExprResp
impl Debug for TableValidateExprResp
source§impl Default for TableValidateExprResp
impl Default for TableValidateExprResp
source§impl<'de> Deserialize<'de> for TableValidateExprResp
impl<'de> Deserialize<'de> for TableValidateExprResp
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 Message for TableValidateExprResp
impl Message for TableValidateExprResp
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<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
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<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
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<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.source§impl PartialEq for TableValidateExprResp
impl PartialEq for TableValidateExprResp
source§impl Serialize for TableValidateExprResp
impl Serialize for TableValidateExprResp
impl StructuralPartialEq for TableValidateExprResp
Auto Trait Implementations§
impl Freeze for TableValidateExprResp
impl RefUnwindSafe for TableValidateExprResp
impl Send for TableValidateExprResp
impl Sync for TableValidateExprResp
impl Unpin for TableValidateExprResp
impl UnwindSafe for TableValidateExprResp
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)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 more