pub enum AppResponseDataClassification {
Public,
}Expand description
Indicates that this response contains only publicly accessible data, not a privileged resource
JSON schema
{
"description": "Indicates that this response contains only publicly
accessible data, not a privileged resource",
"type": "string",
"enum": [
"public"
]
}Variants§
Public
Trait Implementations§
Source§impl Clone for AppResponseDataClassification
impl Clone for AppResponseDataClassification
Source§fn clone(&self) -> AppResponseDataClassification
fn clone(&self) -> AppResponseDataClassification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AppResponseDataClassification
Source§impl<'de> Deserialize<'de> for AppResponseDataClassification
impl<'de> Deserialize<'de> for AppResponseDataClassification
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
impl Eq for AppResponseDataClassification
Source§impl From<&AppResponseDataClassification> for AppResponseDataClassification
impl From<&AppResponseDataClassification> for AppResponseDataClassification
Source§fn from(value: &AppResponseDataClassification) -> Self
fn from(value: &AppResponseDataClassification) -> Self
Converts to this type from the input type.
Source§impl Hash for AppResponseDataClassification
impl Hash for AppResponseDataClassification
Source§impl Ord for AppResponseDataClassification
impl Ord for AppResponseDataClassification
Source§fn cmp(&self, other: &AppResponseDataClassification) -> Ordering
fn cmp(&self, other: &AppResponseDataClassification) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AppResponseDataClassification
impl PartialEq for AppResponseDataClassification
Source§fn eq(&self, other: &AppResponseDataClassification) -> bool
fn eq(&self, other: &AppResponseDataClassification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AppResponseDataClassification
impl PartialOrd for AppResponseDataClassification
impl StructuralPartialEq for AppResponseDataClassification
Source§impl TryFrom<&String> for AppResponseDataClassification
impl TryFrom<&String> for AppResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AppResponseDataClassification
impl TryFrom<&str> for AppResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AppResponseDataClassification
impl TryFrom<String> for AppResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for AppResponseDataClassification
impl RefUnwindSafe for AppResponseDataClassification
impl Send for AppResponseDataClassification
impl Sync for AppResponseDataClassification
impl Unpin for AppResponseDataClassification
impl UnsafeUnpin for AppResponseDataClassification
impl UnwindSafe for AppResponseDataClassification
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