pub enum DestinyVersion {
DestinyInternalAlpha = 10_500,
DestinyFirstLookAlpha = 10_800,
DestinyTheTakenKing = 12_000,
DestinyRiseOfIron = 12_400,
Destiny2Beta = 21_000,
Destiny2Forsaken = 22_000,
Destiny2Shadowkeep = 22_600,
Destiny2BeyondLight = 23_000,
Destiny2WitchQueen = 24_000,
Destiny2Lightfall = 27_000,
Destiny2TheFinalShape = 28_000,
Destiny2TheEdgeOfFate = 29_000,
}Variants§
DestinyInternalAlpha = 10_500
X360 december 2013 internal alpha version of Destiny
DestinyFirstLookAlpha = 10_800
PS4 First Look Alpha
DestinyTheTakenKing = 12_000
PS3/X360 version of Destiny (The Taken King)
DestinyRiseOfIron = 12_400
The latest version of Destiny (Rise of Iron)
Destiny2Beta = 21_000
Destiny 2 (Beta)
Destiny2Forsaken = 22_000
Destiny 2 (Forsaken)
Destiny2Shadowkeep = 22_600
The last version of Destiny 2 before Beyond Light (Shadowkeep/Season of Arrivals)
Destiny2BeyondLight = 23_000
Destiny 2 (Beyond Light/Season of the Lost)
Destiny2WitchQueen = 24_000
Destiny 2 (Witch Queen/Season of the Seraph)
Destiny2Lightfall = 27_000
Destiny 2 (Lightfall)
Destiny2TheFinalShape = 28_000
Destiny 2 (The Final Shape)
Destiny2TheEdgeOfFate = 29_000
Destiny 2 (The Edge of Fate)
Implementations§
Trait Implementations§
Source§impl Clone for DestinyVersion
impl Clone for DestinyVersion
Source§fn clone(&self) -> DestinyVersion
fn clone(&self) -> DestinyVersion
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 DestinyVersion
impl Debug for DestinyVersion
Source§impl<'de> Deserialize<'de> for DestinyVersion
impl<'de> Deserialize<'de> for DestinyVersion
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 PartialEq for DestinyVersion
impl PartialEq for DestinyVersion
Source§impl PartialOrd for DestinyVersion
impl PartialOrd for DestinyVersion
Source§impl Serialize for DestinyVersion
impl Serialize for DestinyVersion
Source§impl ValueEnum for DestinyVersion
impl ValueEnum for DestinyVersion
Source§impl Version for DestinyVersion
impl Version for DestinyVersion
impl Copy for DestinyVersion
impl StructuralPartialEq for DestinyVersion
Auto Trait Implementations§
impl Freeze for DestinyVersion
impl RefUnwindSafe for DestinyVersion
impl Send for DestinyVersion
impl Sync for DestinyVersion
impl Unpin for DestinyVersion
impl UnwindSafe for DestinyVersion
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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