#[non_exhaustive]pub enum BrowserFamily {
Chrome,
Firefox,
Safari,
Edge,
}Expand description
Browser family for a TLS profile pack.
§Example
use stygian_browser::tls::BrowserFamily;
assert_eq!(BrowserFamily::Chrome.as_str(), "chrome");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.
Chrome
Google Chrome / Chromium.
Firefox
Mozilla Firefox.
Safari
Apple Safari.
Edge
Microsoft Edge (Chromium-based).
Implementations§
Trait Implementations§
Source§impl Clone for BrowserFamily
impl Clone for BrowserFamily
Source§fn clone(&self) -> BrowserFamily
fn clone(&self) -> BrowserFamily
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 BrowserFamily
impl Debug for BrowserFamily
Source§impl<'de> Deserialize<'de> for BrowserFamily
impl<'de> Deserialize<'de> for BrowserFamily
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 BrowserFamily
impl Display for BrowserFamily
Source§impl Hash for BrowserFamily
impl Hash for BrowserFamily
Source§impl PartialEq for BrowserFamily
impl PartialEq for BrowserFamily
Source§impl Serialize for BrowserFamily
impl Serialize for BrowserFamily
impl Copy for BrowserFamily
impl Eq for BrowserFamily
impl StructuralPartialEq for BrowserFamily
Auto Trait Implementations§
impl Freeze for BrowserFamily
impl RefUnwindSafe for BrowserFamily
impl Send for BrowserFamily
impl Sync for BrowserFamily
impl Unpin for BrowserFamily
impl UnsafeUnpin for BrowserFamily
impl UnwindSafe for BrowserFamily
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.