pub struct SendMessageRequestHeader {Show 13 fields
pub producerGroup: String,
pub topic: String,
pub defaultTopic: String,
pub defaultTopicQueueNums: i32,
pub queueId: i32,
pub sysFlag: i32,
pub bornTimestamp: i64,
pub flag: i32,
pub properties: String,
pub reconsumeTimes: i32,
pub unitMode: bool,
pub batch: bool,
pub maxReconsumeTimes: i32,
}Fields§
§producerGroup: String§topic: String§defaultTopic: String§defaultTopicQueueNums: i32§queueId: i32§sysFlag: i32§bornTimestamp: i64§flag: i32§properties: String§reconsumeTimes: i32§unitMode: bool§batch: bool§maxReconsumeTimes: i32Implementations§
Trait Implementations§
Source§impl Debug for SendMessageRequestHeader
impl Debug for SendMessageRequestHeader
Source§impl Serialize for SendMessageRequestHeader
impl Serialize for SendMessageRequestHeader
Auto Trait Implementations§
impl Freeze for SendMessageRequestHeader
impl RefUnwindSafe for SendMessageRequestHeader
impl Send for SendMessageRequestHeader
impl Sync for SendMessageRequestHeader
impl Unpin for SendMessageRequestHeader
impl UnwindSafe for SendMessageRequestHeader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more