[][src]Struct azure_functions::event_hub::SystemProperties

pub struct SystemProperties {
    pub sequence_number: i64,
    pub offset: String,
    pub partition_key: Option<String>,
    pub enqueued_time: DateTime<Utc>,
}

Represents properties that are set by the Event Hubs service.

Fields

sequence_number: i64

The logical sequence number of the event within the partition stream of the Event Hub.

offset: String

The data relative to the Event Hub partition stream.

partition_key: Option<String>

The partition key of the corresponding partition.

enqueued_time: DateTime<Utc>

The enqueuing time of the message time in UTC.

Trait Implementations

impl Debug for SystemProperties[src]

impl Serialize for SystemProperties[src]

impl<'de> Deserialize<'de> for SystemProperties[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