[][src]Struct azure_functions::event_hub::RuntimeInformation

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>,
}

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

impl Debug for RuntimeInformation[src]

impl Serialize for RuntimeInformation[src]

impl<'de> Deserialize<'de> for RuntimeInformation[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T