pub enum ResultSetKind {
References,
CallHierarchy,
TypeHierarchy,
}Expand description
High-level kind of a stored result set.
Variants§
References
A references/search-like collection of locations.
CallHierarchy
Call hierarchy (incoming/outgoing call edges).
TypeHierarchy
Type hierarchy (supertypes/subtypes).
Trait Implementations§
Source§impl Clone for ResultSetKind
impl Clone for ResultSetKind
Source§fn clone(&self) -> ResultSetKind
fn clone(&self) -> ResultSetKind
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 moreimpl Copy for ResultSetKind
Source§impl Debug for ResultSetKind
impl Debug for ResultSetKind
impl Eq for ResultSetKind
Source§impl PartialEq for ResultSetKind
impl PartialEq for ResultSetKind
Source§fn eq(&self, other: &ResultSetKind) -> bool
fn eq(&self, other: &ResultSetKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResultSetKind
Auto Trait Implementations§
impl Freeze for ResultSetKind
impl RefUnwindSafe for ResultSetKind
impl Send for ResultSetKind
impl Sync for ResultSetKind
impl Unpin for ResultSetKind
impl UnsafeUnpin for ResultSetKind
impl UnwindSafe for ResultSetKind
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