pub enum SchemaType {
Bytes,
String,
Int64,
Json(String),
}Expand description
Represents the type of schema used for data serialization and validation.
This enum defines the possible types of schemas that can be applied to data.
Variants:
Bytes: Represents a schema where data is in raw bytes format.String: Represents a schema where data is in string format.Int64: Represents a schema where data is in 64-bit integer format.Json: Represents a schema where data is in JSON format. The associated string holds the JSON schema.
Variants§
Trait Implementations§
Source§impl Clone for SchemaType
impl Clone for SchemaType
Source§fn clone(&self) -> SchemaType
fn clone(&self) -> SchemaType
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 SchemaType
impl Debug for SchemaType
Source§impl<'de> Deserialize<'de> for SchemaType
impl<'de> Deserialize<'de> for SchemaType
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 From<SchemaType> for TypeSchema
impl From<SchemaType> for TypeSchema
Source§fn from(schema_type: SchemaType) -> Self
fn from(schema_type: SchemaType) -> Self
Converts to this type from the input type.
Source§impl From<TypeSchema> for SchemaType
impl From<TypeSchema> for SchemaType
Source§fn from(proto_schema: ProtoTypeSchema) -> Self
fn from(proto_schema: ProtoTypeSchema) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SchemaType
impl RefUnwindSafe for SchemaType
impl Send for SchemaType
impl Sync for SchemaType
impl Unpin for SchemaType
impl UnwindSafe for SchemaType
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<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> 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