pub enum ReturnKind {
Unknown(Box<UnknownCause>),
Scalar,
String,
InstantVector,
RangeVector,
}
Expand description
A predicted return datatype
Variants§
Implementations§
Source§impl ReturnKind
impl ReturnKind
Trait Implementations§
Source§impl Clone for ReturnKind
impl Clone for ReturnKind
Source§fn clone(&self) -> ReturnKind
fn clone(&self) -> ReturnKind
Returns a duplicate of the value. Read more
1.0.0 · 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 ReturnKind
impl Debug for ReturnKind
Source§impl PartialEq for ReturnKind
impl PartialEq for ReturnKind
impl StructuralPartialEq for ReturnKind
Auto Trait Implementations§
impl Freeze for ReturnKind
impl RefUnwindSafe for ReturnKind
impl Send for ReturnKind
impl Sync for ReturnKind
impl Unpin for ReturnKind
impl UnwindSafe for ReturnKind
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