pub enum RuntimeDataType {
Boolean,
Composite,
Date(Option<String>),
Double,
GeoPoint,
Ip,
Keyword,
Long,
}
Expand description
A runtime data type that is used in a search request.
Variants§
Boolean
Boolean
Composite
Composite
Date(Option<String>)
Date with optional format
Double
Double
GeoPoint
Geo point
Ip
IP address
Keyword
Keyword
Long
Long
Trait Implementations§
Source§impl Clone for RuntimeDataType
impl Clone for RuntimeDataType
Source§fn clone(&self) -> RuntimeDataType
fn clone(&self) -> RuntimeDataType
Returns a copy 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 RuntimeDataType
impl Debug for RuntimeDataType
Source§impl PartialEq for RuntimeDataType
impl PartialEq for RuntimeDataType
Source§impl PartialOrd for RuntimeDataType
impl PartialOrd for RuntimeDataType
Source§impl Serialize for RuntimeDataType
impl Serialize for RuntimeDataType
impl Eq for RuntimeDataType
impl StructuralPartialEq for RuntimeDataType
Auto Trait Implementations§
impl Freeze for RuntimeDataType
impl RefUnwindSafe for RuntimeDataType
impl Send for RuntimeDataType
impl Sync for RuntimeDataType
impl Unpin for RuntimeDataType
impl UnwindSafe for RuntimeDataType
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