pub struct DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem {
pub group_name: Option<String>,
pub offset: Option<i64>,
}Expand description
DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
JSON schema
{
"type": "object",
"properties": {
"group_name": {
"description": "Name of the consumer group.",
"examples": [
"consumer"
],
"type": "string"
},
"offset": {
"description": "The current offset of the consumer group.",
"examples": [
0
],
"type": "integer"
}
}
}Fields§
§group_name: Option<String>Name of the consumer group.
offset: Option<i64>The current offset of the consumer group.
Trait Implementations§
Source§impl Clone for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl Clone for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
Source§fn clone(
&self,
) -> DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
fn clone( &self, ) -> DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
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 DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl<'de> Deserialize<'de> for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
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<&DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem> for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl From<&DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem> for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
Source§fn from(
value: &DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem,
) -> Self
fn from( value: &DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl RefUnwindSafe for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl Send for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl Sync for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl Unpin for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl UnsafeUnpin for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
impl UnwindSafe for DatabasesGetKafkaTopicResponseTopicPartitionsItemConsumerGroupsItem
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