pub enum SemanticOutputType {
Complete(Option<SymbolId>),
Stream {
item_type: SymbolId,
},
}Variants§
Trait Implementations§
Source§impl Clone for SemanticOutputType
impl Clone for SemanticOutputType
Source§fn clone(&self) -> SemanticOutputType
fn clone(&self) -> SemanticOutputType
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 SemanticOutputType
impl Debug for SemanticOutputType
Source§impl PartialEq for SemanticOutputType
impl PartialEq for SemanticOutputType
Source§fn eq(&self, other: &SemanticOutputType) -> bool
fn eq(&self, other: &SemanticOutputType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SemanticOutputType
impl StructuralPartialEq for SemanticOutputType
Auto Trait Implementations§
impl Freeze for SemanticOutputType
impl RefUnwindSafe for SemanticOutputType
impl Send for SemanticOutputType
impl Sync for SemanticOutputType
impl Unpin for SemanticOutputType
impl UnsafeUnpin for SemanticOutputType
impl UnwindSafe for SemanticOutputType
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