pub struct RuntimeInformation {
pub partition_id: String,
pub last_sequence_number: i64,
pub last_enqueued_time: DateTime<Utc>,
pub last_enqueued_offset: Option<String>,
pub retrieval_time: DateTime<Utc>,
}
Expand description
Represents the approximate receiver runtime information for a logical partition of an Event Hub.
Fields§
§partition_id: String
The partition ID for a logical partition of an Event Hub.
last_sequence_number: i64
The last sequence number of the event within the partition stream of the Event Hub.
last_enqueued_time: DateTime<Utc>
The enqueued time (in UTC) of the last event.
last_enqueued_offset: Option<String>
The offset of the last enqueued event.
retrieval_time: DateTime<Utc>
The time when the runtime information was retrieved.
Trait Implementations§
Source§impl Debug for RuntimeInformation
impl Debug for RuntimeInformation
Source§impl<'de> Deserialize<'de> for RuntimeInformation
impl<'de> Deserialize<'de> for RuntimeInformation
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 RuntimeInformation
impl RefUnwindSafe for RuntimeInformation
impl Send for RuntimeInformation
impl Sync for RuntimeInformation
impl Unpin for RuntimeInformation
impl UnwindSafe for RuntimeInformation
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request