pub struct AviUtl2Version(pub u32);Expand description
AviUtl2のバージョン。
§Note
バージョン番号の形式は公式に定義されていないため、暫定的に以下のように解釈しています。
2001500
|| | |
|| | +-- ビルドバージョン
|| +---- ベータバージョン
|+------ マイナーバージョン
+------- メジャーバージョンTuple Fields§
§0: u32Implementations§
Trait Implementations§
Source§impl Clone for AviUtl2Version
impl Clone for AviUtl2Version
Source§fn clone(&self) -> AviUtl2Version
fn clone(&self) -> AviUtl2Version
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 AviUtl2Version
impl Debug for AviUtl2Version
Source§impl From<AviUtl2Version> for u32
impl From<AviUtl2Version> for u32
Source§fn from(value: AviUtl2Version) -> Self
fn from(value: AviUtl2Version) -> Self
Converts to this type from the input type.
Source§impl From<u32> for AviUtl2Version
impl From<u32> for AviUtl2Version
Source§impl FromTableValue for AviUtl2Version
Available on crate feature aviutl2-alias only.
impl FromTableValue for AviUtl2Version
Available on crate feature
aviutl2-alias only.type Err = ParseIntError
fn from_table_value(value: &str) -> Result<Self, Self::Err>
Source§impl Ord for AviUtl2Version
impl Ord for AviUtl2Version
Source§fn cmp(&self, other: &AviUtl2Version) -> Ordering
fn cmp(&self, other: &AviUtl2Version) -> 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 AviUtl2Version
impl PartialEq for AviUtl2Version
Source§impl PartialOrd for AviUtl2Version
impl PartialOrd for AviUtl2Version
impl Copy for AviUtl2Version
impl Eq for AviUtl2Version
impl StructuralPartialEq for AviUtl2Version
Auto Trait Implementations§
impl Freeze for AviUtl2Version
impl RefUnwindSafe for AviUtl2Version
impl Send for AviUtl2Version
impl Sync for AviUtl2Version
impl Unpin for AviUtl2Version
impl UnwindSafe for AviUtl2Version
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§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.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