pub struct SampleInput {
pub input: Option<Input>,
pub compatibility_level: Option<String>,
pub events_uri: Option<String>,
pub data_locale: Option<String>,
}Expand description
The stream analytics input to sample.
Fields§
§input: Option<Input>An input object, containing all information associated with the named input. All inputs are contained under a streaming job.
compatibility_level: Option<String>Defaults to the default ASA job compatibility level. Today it is 1.2
events_uri: Option<String>The SAS URI of the storage blob for service to write the sampled events to. If this parameter is not provided, service will write events to he system account and share a temporary SAS URI to it.
data_locale: Option<String>Defaults to en-US.
Implementations§
Source§impl SampleInput
impl SampleInput
Trait Implementations§
Source§impl Clone for SampleInput
impl Clone for SampleInput
Source§fn clone(&self) -> SampleInput
fn clone(&self) -> SampleInput
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 Debug for SampleInput
impl Debug for SampleInput
Source§impl Default for SampleInput
impl Default for SampleInput
Source§fn default() -> SampleInput
fn default() -> SampleInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SampleInput
impl<'de> Deserialize<'de> for SampleInput
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 SampleInput
impl PartialEq for SampleInput
Source§impl Serialize for SampleInput
impl Serialize for SampleInput
impl StructuralPartialEq for SampleInput
Auto Trait Implementations§
impl Freeze for SampleInput
impl RefUnwindSafe for SampleInput
impl Send for SampleInput
impl Sync for SampleInput
impl Unpin for SampleInput
impl UnwindSafe for SampleInput
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