pub struct LeanModuleDescriptor {
pub module: String,
pub path: PathBuf,
pub source_root: String,
}Expand description
A discovered Lean source module in a Lake project.
Fields§
§module: String§path: PathBuf§source_root: StringTrait Implementations§
Source§impl Clone for LeanModuleDescriptor
impl Clone for LeanModuleDescriptor
Source§fn clone(&self) -> LeanModuleDescriptor
fn clone(&self) -> LeanModuleDescriptor
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 LeanModuleDescriptor
impl Debug for LeanModuleDescriptor
Source§impl PartialEq for LeanModuleDescriptor
impl PartialEq for LeanModuleDescriptor
Source§fn eq(&self, other: &LeanModuleDescriptor) -> bool
fn eq(&self, other: &LeanModuleDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeanModuleDescriptor
impl StructuralPartialEq for LeanModuleDescriptor
Auto Trait Implementations§
impl Freeze for LeanModuleDescriptor
impl RefUnwindSafe for LeanModuleDescriptor
impl Send for LeanModuleDescriptor
impl Sync for LeanModuleDescriptor
impl Unpin for LeanModuleDescriptor
impl UnsafeUnpin for LeanModuleDescriptor
impl UnwindSafe for LeanModuleDescriptor
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