pub struct CataloguePreviewEntry {
pub module_path: Vec<String>,
pub call: String,
}Fields§
§module_path: Vec<String>§call: StringImplementations§
Source§impl CataloguePreviewEntry
impl CataloguePreviewEntry
pub fn new( module_path: impl IntoIterator<Item = impl Into<String>>, call: impl Into<String>, ) -> Self
pub fn from_lashlang_executable(executable: ResolvedLashlangToolBinding) -> Self
pub fn module_path_string(&self) -> String
Trait Implementations§
Source§impl Clone for CataloguePreviewEntry
impl Clone for CataloguePreviewEntry
Source§fn clone(&self) -> CataloguePreviewEntry
fn clone(&self) -> CataloguePreviewEntry
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 CataloguePreviewEntry
impl Debug for CataloguePreviewEntry
impl Eq for CataloguePreviewEntry
Source§impl PartialEq for CataloguePreviewEntry
impl PartialEq for CataloguePreviewEntry
Source§fn eq(&self, other: &CataloguePreviewEntry) -> bool
fn eq(&self, other: &CataloguePreviewEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CataloguePreviewEntry
Auto Trait Implementations§
impl Freeze for CataloguePreviewEntry
impl RefUnwindSafe for CataloguePreviewEntry
impl Send for CataloguePreviewEntry
impl Sync for CataloguePreviewEntry
impl Unpin for CataloguePreviewEntry
impl UnsafeUnpin for CataloguePreviewEntry
impl UnwindSafe for CataloguePreviewEntry
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