pub enum CrossAppConnectionsResponseDataClassification {
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 CrossAppConnectionsResponseDataClassification
impl Clone for CrossAppConnectionsResponseDataClassification
Source§fn clone(&self) -> CrossAppConnectionsResponseDataClassification
fn clone(&self) -> CrossAppConnectionsResponseDataClassification
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 CrossAppConnectionsResponseDataClassification
Source§impl<'de> Deserialize<'de> for CrossAppConnectionsResponseDataClassification
impl<'de> Deserialize<'de> for CrossAppConnectionsResponseDataClassification
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 CrossAppConnectionsResponseDataClassification
Source§impl From<&CrossAppConnectionsResponseDataClassification> for CrossAppConnectionsResponseDataClassification
impl From<&CrossAppConnectionsResponseDataClassification> for CrossAppConnectionsResponseDataClassification
Source§fn from(value: &CrossAppConnectionsResponseDataClassification) -> Self
fn from(value: &CrossAppConnectionsResponseDataClassification) -> Self
Converts to this type from the input type.
Source§impl Ord for CrossAppConnectionsResponseDataClassification
impl Ord for CrossAppConnectionsResponseDataClassification
Source§fn cmp(&self, other: &CrossAppConnectionsResponseDataClassification) -> Ordering
fn cmp(&self, other: &CrossAppConnectionsResponseDataClassification) -> 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 CrossAppConnectionsResponseDataClassification
impl PartialEq for CrossAppConnectionsResponseDataClassification
Source§fn eq(&self, other: &CrossAppConnectionsResponseDataClassification) -> bool
fn eq(&self, other: &CrossAppConnectionsResponseDataClassification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CrossAppConnectionsResponseDataClassification
impl PartialOrd for CrossAppConnectionsResponseDataClassification
Source§fn partial_cmp(
&self,
other: &CrossAppConnectionsResponseDataClassification,
) -> Option<Ordering>
fn partial_cmp( &self, other: &CrossAppConnectionsResponseDataClassification, ) -> Option<Ordering>
impl StructuralPartialEq for CrossAppConnectionsResponseDataClassification
Source§impl TryFrom<&String> for CrossAppConnectionsResponseDataClassification
impl TryFrom<&String> for CrossAppConnectionsResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for CrossAppConnectionsResponseDataClassification
impl TryFrom<&str> for CrossAppConnectionsResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for CrossAppConnectionsResponseDataClassification
impl TryFrom<String> for CrossAppConnectionsResponseDataClassification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for CrossAppConnectionsResponseDataClassification
impl RefUnwindSafe for CrossAppConnectionsResponseDataClassification
impl Send for CrossAppConnectionsResponseDataClassification
impl Sync for CrossAppConnectionsResponseDataClassification
impl Unpin for CrossAppConnectionsResponseDataClassification
impl UnsafeUnpin for CrossAppConnectionsResponseDataClassification
impl UnwindSafe for CrossAppConnectionsResponseDataClassification
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