pub struct EventHubStreamInputDataSourceProperties {
pub event_hub_data_source_properties: EventHubDataSourceProperties,
pub consumer_group_name: Option<String>,
}Expand description
The properties that are associated with a Event Hub input containing stream data.
Fields§
§event_hub_data_source_properties: EventHubDataSourceProperties§consumer_group_name: Option<String>The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
Implementations§
Trait Implementations§
Source§impl Clone for EventHubStreamInputDataSourceProperties
impl Clone for EventHubStreamInputDataSourceProperties
Source§fn clone(&self) -> EventHubStreamInputDataSourceProperties
fn clone(&self) -> EventHubStreamInputDataSourceProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for EventHubStreamInputDataSourceProperties
impl Default for EventHubStreamInputDataSourceProperties
Source§fn default() -> EventHubStreamInputDataSourceProperties
fn default() -> EventHubStreamInputDataSourceProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventHubStreamInputDataSourceProperties
impl<'de> Deserialize<'de> for EventHubStreamInputDataSourceProperties
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
Source§impl PartialEq for EventHubStreamInputDataSourceProperties
impl PartialEq for EventHubStreamInputDataSourceProperties
Source§fn eq(&self, other: &EventHubStreamInputDataSourceProperties) -> bool
fn eq(&self, other: &EventHubStreamInputDataSourceProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventHubStreamInputDataSourceProperties
Auto Trait Implementations§
impl Freeze for EventHubStreamInputDataSourceProperties
impl RefUnwindSafe for EventHubStreamInputDataSourceProperties
impl Send for EventHubStreamInputDataSourceProperties
impl Sync for EventHubStreamInputDataSourceProperties
impl Unpin for EventHubStreamInputDataSourceProperties
impl UnwindSafe for EventHubStreamInputDataSourceProperties
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