#[non_exhaustive]pub enum LeanWorkerProofEditTarget {
Declaration {
name: String,
position: LeanWorkerProofPositionSelector,
},
}Expand description
Target for a non-mutating proof attempt over an in-memory source overlay.
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.
Declaration
Try a tactic fragment at a selected proof position inside one declaration.
Trait Implementations§
Source§impl Clone for LeanWorkerProofEditTarget
impl Clone for LeanWorkerProofEditTarget
Source§fn clone(&self) -> LeanWorkerProofEditTarget
fn clone(&self) -> LeanWorkerProofEditTarget
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 LeanWorkerProofEditTarget
impl Debug for LeanWorkerProofEditTarget
Source§impl<'de> Deserialize<'de> for LeanWorkerProofEditTarget
impl<'de> Deserialize<'de> for LeanWorkerProofEditTarget
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerProofEditTarget, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LeanWorkerProofEditTarget, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LeanWorkerProofEditTarget
Source§impl PartialEq for LeanWorkerProofEditTarget
impl PartialEq for LeanWorkerProofEditTarget
Source§fn eq(&self, other: &LeanWorkerProofEditTarget) -> bool
fn eq(&self, other: &LeanWorkerProofEditTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerProofEditTarget
impl Serialize for LeanWorkerProofEditTarget
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 LeanWorkerProofEditTarget
Auto Trait Implementations§
impl Freeze for LeanWorkerProofEditTarget
impl RefUnwindSafe for LeanWorkerProofEditTarget
impl Send for LeanWorkerProofEditTarget
impl Sync for LeanWorkerProofEditTarget
impl Unpin for LeanWorkerProofEditTarget
impl UnsafeUnpin for LeanWorkerProofEditTarget
impl UnwindSafe for LeanWorkerProofEditTarget
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