pub enum LeanWorkerMetaTransparency {
Default,
Reducible,
Instances,
All,
}Expand description
Reducibility setting for is_def_eq, mirroring
lean_rs_host::meta::LeanMetaTransparency.
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 moreSource§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<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
Source§impl From<LeanWorkerMetaTransparency> for LeanMetaTransparency
impl From<LeanWorkerMetaTransparency> for LeanMetaTransparency
Source§fn from(value: LeanWorkerMetaTransparency) -> Self
fn from(value: LeanWorkerMetaTransparency) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LeanWorkerMetaTransparency
impl PartialEq for LeanWorkerMetaTransparency
Source§fn eq(&self, other: &LeanWorkerMetaTransparency) -> bool
fn eq(&self, other: &LeanWorkerMetaTransparency) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LeanWorkerMetaTransparency
impl Eq for LeanWorkerMetaTransparency
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