pub enum SpaceKind {
Unknown,
Function,
Class,
Struct,
Trait,
Impl,
Unit,
Namespace,
Interface,
}
Expand description
The list of supported space kinds.
Variants§
Unknown
An unknown space
Function
A function space
Class
A class space
Struct
A struct space
Trait
A Rust
trait space
Impl
A Rust
implementation space
Unit
A general space
Namespace
A C/C++
namespace
Interface
An interface
Trait Implementations§
impl Copy for SpaceKind
impl Eq for SpaceKind
impl StructuralPartialEq for SpaceKind
Auto Trait Implementations§
impl Freeze for SpaceKind
impl RefUnwindSafe for SpaceKind
impl Send for SpaceKind
impl Sync for SpaceKind
impl Unpin for SpaceKind
impl UnwindSafe for SpaceKind
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§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.