#[non_exhaustive]pub struct IntentLevelSlotResolutionTestResults {
    pub items: Option<Vec<IntentLevelSlotResolutionTestResultItem>>,
}Expand description
Indicates the success or failure of slots at the intent level.
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.items: Option<Vec<IntentLevelSlotResolutionTestResultItem>>Indicates the items for the slot level resolution for the intents.
Implementations§
source§impl IntentLevelSlotResolutionTestResults
 
impl IntentLevelSlotResolutionTestResults
sourcepub fn items(&self) -> Option<&[IntentLevelSlotResolutionTestResultItem]>
 
pub fn items(&self) -> Option<&[IntentLevelSlotResolutionTestResultItem]>
Indicates the items for the slot level resolution for the intents.
source§impl IntentLevelSlotResolutionTestResults
 
impl IntentLevelSlotResolutionTestResults
sourcepub fn builder() -> IntentLevelSlotResolutionTestResultsBuilder
 
pub fn builder() -> IntentLevelSlotResolutionTestResultsBuilder
Creates a new builder-style object to manufacture IntentLevelSlotResolutionTestResults.
Trait Implementations§
source§impl Clone for IntentLevelSlotResolutionTestResults
 
impl Clone for IntentLevelSlotResolutionTestResults
source§fn clone(&self) -> IntentLevelSlotResolutionTestResults
 
fn clone(&self) -> IntentLevelSlotResolutionTestResults
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 PartialEq for IntentLevelSlotResolutionTestResults
 
impl PartialEq for IntentLevelSlotResolutionTestResults
source§fn eq(&self, other: &IntentLevelSlotResolutionTestResults) -> bool
 
fn eq(&self, other: &IntentLevelSlotResolutionTestResults) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IntentLevelSlotResolutionTestResults
Auto Trait Implementations§
impl RefUnwindSafe for IntentLevelSlotResolutionTestResults
impl Send for IntentLevelSlotResolutionTestResults
impl Sync for IntentLevelSlotResolutionTestResults
impl Unpin for IntentLevelSlotResolutionTestResults
impl UnwindSafe for IntentLevelSlotResolutionTestResults
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