Struct kafka_api::api_versions_response::ApiVersion
source · pub struct ApiVersion {
pub api_key: i16,
pub min_version: i16,
pub max_version: i16,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§api_key: i16
The API index.
min_version: i16
The minimum supported version, inclusive.
max_version: i16
The maximum supported version, inclusive.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Debug for ApiVersion
impl Debug for ApiVersion
Auto Trait Implementations§
impl RefUnwindSafe for ApiVersion
impl Send for ApiVersion
impl Sync for ApiVersion
impl Unpin for ApiVersion
impl UnwindSafe for ApiVersion
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