pub enum Edition {
V2023_01,
V2023_10,
V2023_11,
V2024_07,
}Expand description
The Cairo edition of a crate.
Editions are a mechanism to allow breaking changes in the compiler. Compiler minor version updates will always support all editions supported by the previous updates with the same major version. Compiler major version updates may remove support for older editions. Editions may be added to provide features that are not backwards compatible, while allowing user to opt-in to them, and be ready for later compiler updates.
Variants§
Implementations§
Source§impl Edition
impl Edition
Sourcepub const fn latest() -> Self
pub const fn latest() -> Self
Returns the latest stable edition.
This Cairo edition is recommended for use in new projects and, in case of existing projects, to migrate to when possible.
Sourcepub fn prelude_submodule_name(&self) -> &str
pub fn prelude_submodule_name(&self) -> &str
The name of the prelude submodule of core::prelude for this compatibility version.
Sourcepub fn ignore_visibility(&self) -> bool
pub fn ignore_visibility(&self) -> bool
Whether to ignore visibility modifiers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Edition
impl<'de> Deserialize<'de> for Edition
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
impl Copy for Edition
impl Eq for Edition
impl StructuralPartialEq for Edition
Auto Trait Implementations§
impl Freeze for Edition
impl RefUnwindSafe for Edition
impl Send for Edition
impl Sync for Edition
impl Unpin for Edition
impl UnwindSafe for Edition
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> 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> 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