pub enum UnityVersionType {
A = 0,
B = 1,
C = 2,
F = 3,
P = 4,
X = 5,
U = 6,
}Expand description
Unity version type (release channel)
Variants§
A = 0
Alpha release
B = 1
Beta release
C = 2
China release
F = 3
Final release
P = 4
Patch release
X = 5
Experimental release
U = 6
Unknown/Custom release
Trait Implementations§
Source§impl Clone for UnityVersionType
impl Clone for UnityVersionType
Source§fn clone(&self) -> UnityVersionType
fn clone(&self) -> UnityVersionType
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 UnityVersionType
impl Debug for UnityVersionType
Source§impl Default for UnityVersionType
impl Default for UnityVersionType
Source§fn default() -> UnityVersionType
fn default() -> UnityVersionType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnityVersionType
impl<'de> Deserialize<'de> for UnityVersionType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnityVersionType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnityVersionType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for UnityVersionType
impl Display for UnityVersionType
Source§impl FromStr for UnityVersionType
impl FromStr for UnityVersionType
Source§type Err = BinaryError
type Err = BinaryError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<UnityVersionType, BinaryError>
fn from_str(s: &str) -> Result<UnityVersionType, BinaryError>
Parses a string
s to return a value of this type. Read moreSource§impl Ord for UnityVersionType
impl Ord for UnityVersionType
Source§fn cmp(&self, other: &UnityVersionType) -> Ordering
fn cmp(&self, other: &UnityVersionType) -> 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 UnityVersionType
impl PartialEq for UnityVersionType
Source§impl PartialOrd for UnityVersionType
impl PartialOrd for UnityVersionType
Source§impl Serialize for UnityVersionType
impl Serialize for UnityVersionType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for UnityVersionType
impl Eq for UnityVersionType
impl StructuralPartialEq for UnityVersionType
Auto Trait Implementations§
impl Freeze for UnityVersionType
impl RefUnwindSafe for UnityVersionType
impl Send for UnityVersionType
impl Sync for UnityVersionType
impl Unpin for UnityVersionType
impl UnwindSafe for UnityVersionType
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.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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().