pub enum LeanWorkerProcessFileOutcome {
Processed {
file: LeanWorkerProcessedFile,
},
Unsupported,
}Expand description
Outcome of LeanWorkerSession::process_file. Mirrors
lean_rs_host::process::ProcessFileOutcome.
Variants§
Processed
The elaborator ran and produced an info-tree projection.
Fields
§
file: LeanWorkerProcessedFileUnsupported
The capability dylib does not export
lean_rs_host_process_with_info_tree.
Trait Implementations§
Source§impl Clone for LeanWorkerProcessFileOutcome
impl Clone for LeanWorkerProcessFileOutcome
Source§fn clone(&self) -> LeanWorkerProcessFileOutcome
fn clone(&self) -> LeanWorkerProcessFileOutcome
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 LeanWorkerProcessFileOutcome
impl Debug for LeanWorkerProcessFileOutcome
Source§impl<'de> Deserialize<'de> for LeanWorkerProcessFileOutcome
impl<'de> Deserialize<'de> for LeanWorkerProcessFileOutcome
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 PartialEq for LeanWorkerProcessFileOutcome
impl PartialEq for LeanWorkerProcessFileOutcome
Source§fn eq(&self, other: &LeanWorkerProcessFileOutcome) -> bool
fn eq(&self, other: &LeanWorkerProcessFileOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeanWorkerProcessFileOutcome
impl StructuralPartialEq for LeanWorkerProcessFileOutcome
Auto Trait Implementations§
impl Freeze for LeanWorkerProcessFileOutcome
impl RefUnwindSafe for LeanWorkerProcessFileOutcome
impl Send for LeanWorkerProcessFileOutcome
impl Sync for LeanWorkerProcessFileOutcome
impl Unpin for LeanWorkerProcessFileOutcome
impl UnsafeUnpin for LeanWorkerProcessFileOutcome
impl UnwindSafe for LeanWorkerProcessFileOutcome
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