Struct browserslist::Distrib
source · pub struct Distrib(/* private fields */);
Expand description
Representation of browser name (or node
) and its version.
When converting it to string, it will be formatted as the output of browserslist. For example:
use browserslist::{Opts, resolve};
let distrib = &resolve(["firefox 93"], &Opts::default()).unwrap()[0];
assert_eq!(distrib.name(), "firefox");
assert_eq!(distrib.version(), "93");
Implementations§
Trait Implementations§
source§impl Deserialize<'static> for Distrib
impl Deserialize<'static> for Distrib
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'static>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for Distrib
impl PartialEq for Distrib
impl Eq for Distrib
impl StructuralPartialEq for Distrib
Auto Trait Implementations§
impl Freeze for Distrib
impl RefUnwindSafe for Distrib
impl Send for Distrib
impl Sync for Distrib
impl Unpin for Distrib
impl UnwindSafe for Distrib
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more