#[non_exhaustive]pub struct BatchEvaluateFeatureInput {
pub project: Option<String>,
pub requests: Option<Vec<EvaluationRequest>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project: Option<String>The name or ARN of the project that contains the feature being evaluated.
requests: Option<Vec<EvaluationRequest>>An array of structures, where each structure assigns a feature variation to one user session.
Implementations§
source§impl BatchEvaluateFeatureInput
impl BatchEvaluateFeatureInput
sourcepub fn builder() -> BatchEvaluateFeatureInputBuilder
pub fn builder() -> BatchEvaluateFeatureInputBuilder
Creates a new builder-style object to manufacture BatchEvaluateFeatureInput.
Trait Implementations§
source§impl Clone for BatchEvaluateFeatureInput
impl Clone for BatchEvaluateFeatureInput
source§fn clone(&self) -> BatchEvaluateFeatureInput
fn clone(&self) -> BatchEvaluateFeatureInput
Returns a copy 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 BatchEvaluateFeatureInput
impl Debug for BatchEvaluateFeatureInput
source§impl PartialEq<BatchEvaluateFeatureInput> for BatchEvaluateFeatureInput
impl PartialEq<BatchEvaluateFeatureInput> for BatchEvaluateFeatureInput
source§fn eq(&self, other: &BatchEvaluateFeatureInput) -> bool
fn eq(&self, other: &BatchEvaluateFeatureInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchEvaluateFeatureInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchEvaluateFeatureInput
impl Send for BatchEvaluateFeatureInput
impl Sync for BatchEvaluateFeatureInput
impl Unpin for BatchEvaluateFeatureInput
impl UnwindSafe for BatchEvaluateFeatureInput
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