pub struct EditorSymbolInformation {
pub name: String,
pub kind: EditorSymbolKind,
pub fact_source: FenceTextIndexSource,
pub location: EditorLocation,
pub container_name: Option<String>,
}Fields§
§name: String§kind: EditorSymbolKind§fact_source: FenceTextIndexSource§location: EditorLocation§container_name: Option<String>Trait Implementations§
Source§impl Clone for EditorSymbolInformation
impl Clone for EditorSymbolInformation
Source§fn clone(&self) -> EditorSymbolInformation
fn clone(&self) -> EditorSymbolInformation
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 EditorSymbolInformation
impl Debug for EditorSymbolInformation
impl Eq for EditorSymbolInformation
Source§impl PartialEq for EditorSymbolInformation
impl PartialEq for EditorSymbolInformation
Source§fn eq(&self, other: &EditorSymbolInformation) -> bool
fn eq(&self, other: &EditorSymbolInformation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EditorSymbolInformation
Auto Trait Implementations§
impl Freeze for EditorSymbolInformation
impl RefUnwindSafe for EditorSymbolInformation
impl Send for EditorSymbolInformation
impl Sync for EditorSymbolInformation
impl Unpin for EditorSymbolInformation
impl UnsafeUnpin for EditorSymbolInformation
impl UnwindSafe for EditorSymbolInformation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.