pub enum LanguageV1MinorVersion {
Show 14 variants
V0,
V1,
V2,
V3,
V4,
V5,
V6,
V7,
V8,
V11,
V12,
V13,
V14,
Dev,
}Expand description
Daml Ledger Fragment language V1 minor version.
Variants§
Trait Implementations§
Source§impl Clone for LanguageV1MinorVersion
impl Clone for LanguageV1MinorVersion
Source§fn clone(&self) -> LanguageV1MinorVersion
fn clone(&self) -> LanguageV1MinorVersion
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 LanguageV1MinorVersion
impl Debug for LanguageV1MinorVersion
Source§impl Display for LanguageV1MinorVersion
impl Display for LanguageV1MinorVersion
Source§impl Hash for LanguageV1MinorVersion
impl Hash for LanguageV1MinorVersion
Source§impl IntoBoundedStatic for LanguageV1MinorVersion
impl IntoBoundedStatic for LanguageV1MinorVersion
Source§type Static = LanguageV1MinorVersion
type Static = LanguageV1MinorVersion
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl Ord for LanguageV1MinorVersion
impl Ord for LanguageV1MinorVersion
Source§fn cmp(&self, other: &LanguageV1MinorVersion) -> Ordering
fn cmp(&self, other: &LanguageV1MinorVersion) -> 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 LanguageV1MinorVersion
impl PartialEq for LanguageV1MinorVersion
Source§impl PartialOrd for LanguageV1MinorVersion
impl PartialOrd for LanguageV1MinorVersion
Source§impl Serialize for LanguageV1MinorVersion
impl Serialize for LanguageV1MinorVersion
Source§impl TryFrom<&str> for LanguageV1MinorVersion
impl TryFrom<&str> for LanguageV1MinorVersion
impl Copy for LanguageV1MinorVersion
impl Eq for LanguageV1MinorVersion
impl StructuralPartialEq for LanguageV1MinorVersion
Auto Trait Implementations§
impl Freeze for LanguageV1MinorVersion
impl RefUnwindSafe for LanguageV1MinorVersion
impl Send for LanguageV1MinorVersion
impl Sync for LanguageV1MinorVersion
impl Unpin for LanguageV1MinorVersion
impl UnwindSafe for LanguageV1MinorVersion
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> 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