#[non_exhaustive]pub enum PlatformClass {
Windows,
MacOs,
Linux,
}Expand description
Operating system platform class for a TLS profile pack.
§Example
use stygian_browser::tls::PlatformClass;
assert_eq!(PlatformClass::Windows.as_str(), "windows");Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for PlatformClass
impl Clone for PlatformClass
Source§fn clone(&self) -> PlatformClass
fn clone(&self) -> PlatformClass
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformClass
impl Debug for PlatformClass
Source§impl<'de> Deserialize<'de> for PlatformClass
impl<'de> Deserialize<'de> for PlatformClass
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 PlatformClass
impl Display for PlatformClass
Source§impl Hash for PlatformClass
impl Hash for PlatformClass
Source§impl PartialEq for PlatformClass
impl PartialEq for PlatformClass
Source§impl Serialize for PlatformClass
impl Serialize for PlatformClass
impl Copy for PlatformClass
impl Eq for PlatformClass
impl StructuralPartialEq for PlatformClass
Auto Trait Implementations§
impl Freeze for PlatformClass
impl RefUnwindSafe for PlatformClass
impl Send for PlatformClass
impl Sync for PlatformClass
impl Unpin for PlatformClass
impl UnsafeUnpin for PlatformClass
impl UnwindSafe for PlatformClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.