pub struct RawPulledMessage {
pub data: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub id: String,
pub publish_time: OffsetDateTime,
pub ordering_key: Option<String>,
}
Fields§
§data: Option<String>
§attributes: Option<HashMap<String, String>>
§id: String
§publish_time: OffsetDateTime
§ordering_key: Option<String>
Trait Implementations§
Source§impl Debug for RawPulledMessage
impl Debug for RawPulledMessage
Source§impl<'de> Deserialize<'de> for RawPulledMessage
impl<'de> Deserialize<'de> for RawPulledMessage
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
Auto Trait Implementations§
impl Freeze for RawPulledMessage
impl RefUnwindSafe for RawPulledMessage
impl Send for RawPulledMessage
impl Sync for RawPulledMessage
impl Unpin for RawPulledMessage
impl UnwindSafe for RawPulledMessage
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