pub struct DatabasesGetKafkaSchemaConfigResponse {
pub compatibility_level: DatabasesGetKafkaSchemaConfigResponseCompatibilityLevel,
}Expand description
DatabasesGetKafkaSchemaConfigResponse
JSON schema
{
"type": "object",
"required": [
"compatibility_level"
],
"properties": {
"compatibility_level": {
"description": "The compatibility level of the schema registry.",
"type": "string",
"enum": [
"NONE",
"BACKWARD",
"BACKWARD_TRANSITIVE",
"FORWARD",
"FORWARD_TRANSITIVE",
"FULL",
"FULL_TRANSITIVE"
]
}
}
}Fields§
§compatibility_level: DatabasesGetKafkaSchemaConfigResponseCompatibilityLevelThe compatibility level of the schema registry.
Trait Implementations§
Source§impl Clone for DatabasesGetKafkaSchemaConfigResponse
impl Clone for DatabasesGetKafkaSchemaConfigResponse
Source§fn clone(&self) -> DatabasesGetKafkaSchemaConfigResponse
fn clone(&self) -> DatabasesGetKafkaSchemaConfigResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DatabasesGetKafkaSchemaConfigResponse
impl<'de> Deserialize<'de> for DatabasesGetKafkaSchemaConfigResponse
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<&DatabasesGetKafkaSchemaConfigResponse> for DatabasesGetKafkaSchemaConfigResponse
impl From<&DatabasesGetKafkaSchemaConfigResponse> for DatabasesGetKafkaSchemaConfigResponse
Source§fn from(value: &DatabasesGetKafkaSchemaConfigResponse) -> Self
fn from(value: &DatabasesGetKafkaSchemaConfigResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabasesGetKafkaSchemaConfigResponse
impl RefUnwindSafe for DatabasesGetKafkaSchemaConfigResponse
impl Send for DatabasesGetKafkaSchemaConfigResponse
impl Sync for DatabasesGetKafkaSchemaConfigResponse
impl Unpin for DatabasesGetKafkaSchemaConfigResponse
impl UnsafeUnpin for DatabasesGetKafkaSchemaConfigResponse
impl UnwindSafe for DatabasesGetKafkaSchemaConfigResponse
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