pub enum SessionSearchVisibility {
Public,
Diagnostic,
Internal,
}Expand description
Display visibility classes that a host may permit.
Variants§
Public
Ordinary user-visible display text.
Diagnostic
Diagnostic text, only when a host explicitly permits it.
Internal
Internal text, only when a host explicitly permits it.
Trait Implementations§
Source§impl Clone for SessionSearchVisibility
impl Clone for SessionSearchVisibility
Source§fn clone(&self) -> SessionSearchVisibility
fn clone(&self) -> SessionSearchVisibility
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 SessionSearchVisibility
Source§impl Debug for SessionSearchVisibility
impl Debug for SessionSearchVisibility
Source§impl<'de> Deserialize<'de> for SessionSearchVisibility
impl<'de> Deserialize<'de> for SessionSearchVisibility
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 SessionSearchVisibility
Source§impl Ord for SessionSearchVisibility
impl Ord for SessionSearchVisibility
Source§fn cmp(&self, other: &SessionSearchVisibility) -> Ordering
fn cmp(&self, other: &SessionSearchVisibility) -> 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 SessionSearchVisibility
impl PartialEq for SessionSearchVisibility
Source§impl PartialOrd for SessionSearchVisibility
impl PartialOrd for SessionSearchVisibility
Source§impl Serialize for SessionSearchVisibility
impl Serialize for SessionSearchVisibility
impl StructuralPartialEq for SessionSearchVisibility
Auto Trait Implementations§
impl Freeze for SessionSearchVisibility
impl RefUnwindSafe for SessionSearchVisibility
impl Send for SessionSearchVisibility
impl Sync for SessionSearchVisibility
impl Unpin for SessionSearchVisibility
impl UnsafeUnpin for SessionSearchVisibility
impl UnwindSafe for SessionSearchVisibility
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