#[non_exhaustive]pub struct DetectorAdditionalConfigurationResult {
pub name: Option<FeatureAdditionalConfiguration>,
pub status: Option<FeatureStatus>,
pub updated_at: Option<DateTime>,
}Expand description
Information about the additional configuration.
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.name: Option<FeatureAdditionalConfiguration>Name of the additional configuration.
status: Option<FeatureStatus>Status of the additional configuration.
updated_at: Option<DateTime>The timestamp at which the additional configuration was last updated. This is in UTC format.
Implementations§
source§impl DetectorAdditionalConfigurationResult
impl DetectorAdditionalConfigurationResult
sourcepub fn name(&self) -> Option<&FeatureAdditionalConfiguration>
pub fn name(&self) -> Option<&FeatureAdditionalConfiguration>
Name of the additional configuration.
sourcepub fn status(&self) -> Option<&FeatureStatus>
pub fn status(&self) -> Option<&FeatureStatus>
Status of the additional configuration.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp at which the additional configuration was last updated. This is in UTC format.
source§impl DetectorAdditionalConfigurationResult
impl DetectorAdditionalConfigurationResult
sourcepub fn builder() -> DetectorAdditionalConfigurationResultBuilder
pub fn builder() -> DetectorAdditionalConfigurationResultBuilder
Creates a new builder-style object to manufacture DetectorAdditionalConfigurationResult.
Trait Implementations§
source§impl Clone for DetectorAdditionalConfigurationResult
impl Clone for DetectorAdditionalConfigurationResult
source§fn clone(&self) -> DetectorAdditionalConfigurationResult
fn clone(&self) -> DetectorAdditionalConfigurationResult
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 DetectorAdditionalConfigurationResult
impl PartialEq for DetectorAdditionalConfigurationResult
source§fn eq(&self, other: &DetectorAdditionalConfigurationResult) -> bool
fn eq(&self, other: &DetectorAdditionalConfigurationResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DetectorAdditionalConfigurationResult
Auto Trait Implementations§
impl RefUnwindSafe for DetectorAdditionalConfigurationResult
impl Send for DetectorAdditionalConfigurationResult
impl Sync for DetectorAdditionalConfigurationResult
impl Unpin for DetectorAdditionalConfigurationResult
impl UnwindSafe for DetectorAdditionalConfigurationResult
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.