Struct tea_sdk::runtime::DelayMessage
pub struct DelayMessage {
pub delay_seconds: u64,
pub subject: String,
pub reply_to: String,
pub body: Vec<u8>,
}
Fields§
§delay_seconds: u64
§subject: String
The message subject or topic
reply_to: String
The reply-to field of the subject. This will be empty if there is no reply subject
body: Vec<u8>
The raw bytes of the message. Encoding/contents is determined by applications out of band
Trait Implementations§
§impl Debug for DelayMessage
impl Debug for DelayMessage
§impl<'de> Deserialize<'de> for DelayMessage
impl<'de> Deserialize<'de> for DelayMessage
§fn deserialize<__D>(
__deserializer: __D
) -> Result<DelayMessage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<DelayMessage, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for DelayMessage
impl PartialEq for DelayMessage
§fn eq(&self, other: &DelayMessage) -> bool
fn eq(&self, other: &DelayMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for DelayMessage
impl Serialize for DelayMessage
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for DelayMessage
impl StructuralEq for DelayMessage
impl StructuralPartialEq for DelayMessage
Auto Trait Implementations§
impl RefUnwindSafe for DelayMessage
impl Send for DelayMessage
impl Sync for DelayMessage
impl Unpin for DelayMessage
impl UnwindSafe for DelayMessage
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.