pub enum ConfigOauthstatusResponseStatus {
Running,
Stopped,
}Expand description
Whether the OAuth authentication server is currently running.
JSON schema
{
"description": "Whether the OAuth authentication server is currently
running.",
"type": "string",
"enum": [
"running",
"stopped"
]
}Variants§
Trait Implementations§
Source§impl Clone for ConfigOauthstatusResponseStatus
impl Clone for ConfigOauthstatusResponseStatus
Source§fn clone(&self) -> ConfigOauthstatusResponseStatus
fn clone(&self) -> ConfigOauthstatusResponseStatus
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 ConfigOauthstatusResponseStatus
Source§impl<'de> Deserialize<'de> for ConfigOauthstatusResponseStatus
impl<'de> Deserialize<'de> for ConfigOauthstatusResponseStatus
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 ConfigOauthstatusResponseStatus
Source§impl From<&ConfigOauthstatusResponseStatus> for ConfigOauthstatusResponseStatus
impl From<&ConfigOauthstatusResponseStatus> for ConfigOauthstatusResponseStatus
Source§fn from(value: &ConfigOauthstatusResponseStatus) -> Self
fn from(value: &ConfigOauthstatusResponseStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for ConfigOauthstatusResponseStatus
impl Ord for ConfigOauthstatusResponseStatus
Source§fn cmp(&self, other: &ConfigOauthstatusResponseStatus) -> Ordering
fn cmp(&self, other: &ConfigOauthstatusResponseStatus) -> 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 PartialOrd for ConfigOauthstatusResponseStatus
impl PartialOrd for ConfigOauthstatusResponseStatus
impl StructuralPartialEq for ConfigOauthstatusResponseStatus
Source§impl TryFrom<&String> for ConfigOauthstatusResponseStatus
impl TryFrom<&String> for ConfigOauthstatusResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ConfigOauthstatusResponseStatus
impl TryFrom<&str> for ConfigOauthstatusResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ConfigOauthstatusResponseStatus
impl TryFrom<String> for ConfigOauthstatusResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ConfigOauthstatusResponseStatus
impl RefUnwindSafe for ConfigOauthstatusResponseStatus
impl Send for ConfigOauthstatusResponseStatus
impl Sync for ConfigOauthstatusResponseStatus
impl Unpin for ConfigOauthstatusResponseStatus
impl UnsafeUnpin for ConfigOauthstatusResponseStatus
impl UnwindSafe for ConfigOauthstatusResponseStatus
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