pub struct DatabasesUpdateKafkaSchemaSubjectConfigResponse {
pub compatibility_level: DatabasesUpdateKafkaSchemaSubjectConfigResponseCompatibilityLevel,
pub subject_name: String,
}Expand description
DatabasesUpdateKafkaSchemaSubjectConfigResponse
JSON schema
{
"type": "object",
"required": [
"compatibility_level",
"subject_name"
],
"properties": {
"compatibility_level": {
"description": "The compatibility level of the schema registry.",
"type": "string",
"enum": [
"NONE",
"BACKWARD",
"BACKWARD_TRANSITIVE",
"FORWARD",
"FORWARD_TRANSITIVE",
"FULL",
"FULL_TRANSITIVE"
]
},
"subject_name": {
"description": "The name of the schema subject.",
"type": "string"
}
}
}Fields§
§compatibility_level: DatabasesUpdateKafkaSchemaSubjectConfigResponseCompatibilityLevelThe compatibility level of the schema registry.
subject_name: StringThe name of the schema subject.
Trait Implementations§
Source§impl Clone for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl Clone for DatabasesUpdateKafkaSchemaSubjectConfigResponse
Source§fn clone(&self) -> DatabasesUpdateKafkaSchemaSubjectConfigResponse
fn clone(&self) -> DatabasesUpdateKafkaSchemaSubjectConfigResponse
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 DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl<'de> Deserialize<'de> for DatabasesUpdateKafkaSchemaSubjectConfigResponse
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<&DatabasesUpdateKafkaSchemaSubjectConfigResponse> for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl From<&DatabasesUpdateKafkaSchemaSubjectConfigResponse> for DatabasesUpdateKafkaSchemaSubjectConfigResponse
Source§fn from(value: &DatabasesUpdateKafkaSchemaSubjectConfigResponse) -> Self
fn from(value: &DatabasesUpdateKafkaSchemaSubjectConfigResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl RefUnwindSafe for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl Send for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl Sync for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl Unpin for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl UnsafeUnpin for DatabasesUpdateKafkaSchemaSubjectConfigResponse
impl UnwindSafe for DatabasesUpdateKafkaSchemaSubjectConfigResponse
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