#[non_exhaustive]pub enum LeanWorkerMetaTransparency {
Default,
Reducible,
Instances,
All,
}Expand description
Reducibility setting for is_def_eq, mirroring
lean_rs_host::meta::LeanMetaTransparency.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Default
Lean’s standard reducibility (default).
Reducible
Only @[reducible] definitions unfold.
Instances
Default plus instance-binding bodies.
All
Every definition unfolds (most aggressive).
Trait Implementations§
Source§impl Clone for LeanWorkerMetaTransparency
impl Clone for LeanWorkerMetaTransparency
Source§fn clone(&self) -> LeanWorkerMetaTransparency
fn clone(&self) -> LeanWorkerMetaTransparency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LeanWorkerMetaTransparency
Source§impl Debug for LeanWorkerMetaTransparency
impl Debug for LeanWorkerMetaTransparency
Source§impl Default for LeanWorkerMetaTransparency
impl Default for LeanWorkerMetaTransparency
Source§fn default() -> LeanWorkerMetaTransparency
fn default() -> LeanWorkerMetaTransparency
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeanWorkerMetaTransparency
impl<'de> Deserialize<'de> for LeanWorkerMetaTransparency
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerMetaTransparency, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerMetaTransparency, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LeanWorkerMetaTransparency
Source§impl Serialize for LeanWorkerMetaTransparency
impl Serialize for LeanWorkerMetaTransparency
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 StructuralPartialEq for LeanWorkerMetaTransparency
Auto Trait Implementations§
impl Freeze for LeanWorkerMetaTransparency
impl RefUnwindSafe for LeanWorkerMetaTransparency
impl Send for LeanWorkerMetaTransparency
impl Sync for LeanWorkerMetaTransparency
impl Unpin for LeanWorkerMetaTransparency
impl UnsafeUnpin for LeanWorkerMetaTransparency
impl UnwindSafe for LeanWorkerMetaTransparency
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