pub enum SearchXSessionActive {
True,
False,
}Expand description
SearchXSessionActive
JSON schema
{
"type": "string",
"enum": [
"true",
"false"
]
}Variants§
Trait Implementations§
Source§impl Clone for SearchXSessionActive
impl Clone for SearchXSessionActive
Source§fn clone(&self) -> SearchXSessionActive
fn clone(&self) -> SearchXSessionActive
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 SearchXSessionActive
Source§impl Debug for SearchXSessionActive
impl Debug for SearchXSessionActive
Source§impl<'de> Deserialize<'de> for SearchXSessionActive
impl<'de> Deserialize<'de> for SearchXSessionActive
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 Display for SearchXSessionActive
impl Display for SearchXSessionActive
impl Eq for SearchXSessionActive
Source§impl FromStr for SearchXSessionActive
impl FromStr for SearchXSessionActive
Source§impl Hash for SearchXSessionActive
impl Hash for SearchXSessionActive
Source§impl Ord for SearchXSessionActive
impl Ord for SearchXSessionActive
Source§fn cmp(&self, other: &SearchXSessionActive) -> Ordering
fn cmp(&self, other: &SearchXSessionActive) -> 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 SearchXSessionActive
impl PartialEq for SearchXSessionActive
Source§fn eq(&self, other: &SearchXSessionActive) -> bool
fn eq(&self, other: &SearchXSessionActive) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SearchXSessionActive
impl PartialOrd for SearchXSessionActive
Source§impl Serialize for SearchXSessionActive
impl Serialize for SearchXSessionActive
impl StructuralPartialEq for SearchXSessionActive
Source§impl TryFrom<&String> for SearchXSessionActive
impl TryFrom<&String> for SearchXSessionActive
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SearchXSessionActive
impl TryFrom<&str> for SearchXSessionActive
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SearchXSessionActive
impl TryFrom<String> for SearchXSessionActive
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SearchXSessionActive
impl RefUnwindSafe for SearchXSessionActive
impl Send for SearchXSessionActive
impl Sync for SearchXSessionActive
impl Unpin for SearchXSessionActive
impl UnsafeUnpin for SearchXSessionActive
impl UnwindSafe for SearchXSessionActive
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