[][src]Struct azure_functions::event_hub::PartitionContext

pub struct PartitionContext {
    pub consumer_group_name: String,
    pub event_hub_path: String,
    pub partition_id: String,
    pub owner: String,
    pub runtime_information: RuntimeInformation,
}

Encapsulates information related to an Event Hubs partition.

Fields

consumer_group_name: String

The name of the consumer group.

event_hub_path: String

The path of the Event Hub.

partition_id: String

The partition ID for the context.

owner: String

The host owner for the partition.

runtime_information: RuntimeInformation

The approximate receiver runtime information for a logical partition of the Event Hub.

Trait Implementations

impl Debug for PartitionContext[src]

impl Serialize for PartitionContext[src]

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