pub struct CompatibleKafkaVersion {
pub source_version: Option<String>,
pub target_versions: Option<Vec<String>>,
}Expand description
<p>Contains source Kafka versions and compatible target Kafka versions.</p>
Fields§
§source_version: Option<String> <p>A Kafka version.</p>
target_versions: Option<Vec<String>> <p>A list of Kafka versions.</p>
Trait Implementations§
Source§impl Clone for CompatibleKafkaVersion
impl Clone for CompatibleKafkaVersion
Source§fn clone(&self) -> CompatibleKafkaVersion
fn clone(&self) -> CompatibleKafkaVersion
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 CompatibleKafkaVersion
impl Debug for CompatibleKafkaVersion
Source§impl Default for CompatibleKafkaVersion
impl Default for CompatibleKafkaVersion
Source§fn default() -> CompatibleKafkaVersion
fn default() -> CompatibleKafkaVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompatibleKafkaVersion
impl<'de> Deserialize<'de> for CompatibleKafkaVersion
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 PartialEq for CompatibleKafkaVersion
impl PartialEq for CompatibleKafkaVersion
impl StructuralPartialEq for CompatibleKafkaVersion
Auto Trait Implementations§
impl Freeze for CompatibleKafkaVersion
impl RefUnwindSafe for CompatibleKafkaVersion
impl Send for CompatibleKafkaVersion
impl Sync for CompatibleKafkaVersion
impl Unpin for CompatibleKafkaVersion
impl UnwindSafe for CompatibleKafkaVersion
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