pub enum WineTagKind {
WineGe,
LolWineGe,
}
Expand description
Represents a Wine GE or Wine GE LoL version.
Wine GE versions come in two flavours. One ist the normal Wine version with GE’s patches and the other is a specific version for League of Legends.
This enum supports serde
’s serialization and deserialization traits.
Variants§
Trait Implementations§
Source§impl Clone for WineTagKind
impl Clone for WineTagKind
Source§fn clone(&self) -> WineTagKind
fn clone(&self) -> WineTagKind
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 WineTagKind
impl Debug for WineTagKind
Source§impl<'de> Deserialize<'de> for WineTagKind
impl<'de> Deserialize<'de> for WineTagKind
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 From<&WineTagKind> for TagKind
impl From<&WineTagKind> for TagKind
Source§fn from(kind: &WineTagKind) -> Self
fn from(kind: &WineTagKind) -> Self
Converts to this type from the input type.
Source§impl From<&str> for WineTagKind
impl From<&str> for WineTagKind
Source§impl From<WineTagKind> for TagKind
impl From<WineTagKind> for TagKind
Source§fn from(kind: WineTagKind) -> Self
fn from(kind: WineTagKind) -> Self
Converts to this type from the input type.
Source§impl Ord for WineTagKind
impl Ord for WineTagKind
Source§fn cmp(&self, other: &WineTagKind) -> Ordering
fn cmp(&self, other: &WineTagKind) -> Ordering
1.21.0 · 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 WineTagKind
impl PartialEq for WineTagKind
Source§impl PartialOrd for WineTagKind
impl PartialOrd for WineTagKind
Source§impl Serialize for WineTagKind
impl Serialize for WineTagKind
impl Copy for WineTagKind
impl Eq for WineTagKind
impl StructuralPartialEq for WineTagKind
Auto Trait Implementations§
impl Freeze for WineTagKind
impl RefUnwindSafe for WineTagKind
impl Send for WineTagKind
impl Sync for WineTagKind
impl Unpin for WineTagKind
impl UnwindSafe for WineTagKind
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.