pub struct CompletionCatalog {
pub icons: Vec<CompletionCatalogEntry>,
}Expand description
Explicit, caller-owned catalog data for one completion request.
Fields§
§icons: Vec<CompletionCatalogEntry>Available icon entries. The compiler never loads these from storage or a network.
Trait Implementations§
Source§impl Clone for CompletionCatalog
impl Clone for CompletionCatalog
Source§fn clone(&self) -> CompletionCatalog
fn clone(&self) -> CompletionCatalog
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 CompletionCatalog
impl Debug for CompletionCatalog
Source§impl Default for CompletionCatalog
impl Default for CompletionCatalog
Source§fn default() -> CompletionCatalog
fn default() -> CompletionCatalog
Returns the “default value” for a type. Read more
impl Eq for CompletionCatalog
Source§impl PartialEq for CompletionCatalog
impl PartialEq for CompletionCatalog
impl StructuralPartialEq for CompletionCatalog
Auto Trait Implementations§
impl Freeze for CompletionCatalog
impl RefUnwindSafe for CompletionCatalog
impl Send for CompletionCatalog
impl Sync for CompletionCatalog
impl Unpin for CompletionCatalog
impl UnsafeUnpin for CompletionCatalog
impl UnwindSafe for CompletionCatalog
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