pub struct ProblemClassificationProperties {
pub display_name: Option<String>,
pub secondary_consent_enabled: Vec<SecondaryConsentEnabled>,
}Expand description
Details about a problem classification available for an Azure service.
Fields§
§display_name: Option<String>Localized name of problem classification.
secondary_consent_enabled: Vec<SecondaryConsentEnabled>This property indicates whether secondary consent is present for problem classification
Implementations§
Trait Implementations§
Source§impl Clone for ProblemClassificationProperties
impl Clone for ProblemClassificationProperties
Source§fn clone(&self) -> ProblemClassificationProperties
fn clone(&self) -> ProblemClassificationProperties
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 ProblemClassificationProperties
impl Default for ProblemClassificationProperties
Source§fn default() -> ProblemClassificationProperties
fn default() -> ProblemClassificationProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProblemClassificationProperties
impl<'de> Deserialize<'de> for ProblemClassificationProperties
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 ProblemClassificationProperties
impl PartialEq for ProblemClassificationProperties
Source§fn eq(&self, other: &ProblemClassificationProperties) -> bool
fn eq(&self, other: &ProblemClassificationProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProblemClassificationProperties
Auto Trait Implementations§
impl Freeze for ProblemClassificationProperties
impl RefUnwindSafe for ProblemClassificationProperties
impl Send for ProblemClassificationProperties
impl Sync for ProblemClassificationProperties
impl Unpin for ProblemClassificationProperties
impl UnwindSafe for ProblemClassificationProperties
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