pub struct DateHistogramCompositeSource { /* private fields */ }
Expand description
Represents a date histogram source in a composite aggregation.
Implementations§
Source§impl DateHistogramCompositeSource
impl DateHistogramCompositeSource
Sourcepub fn missing_bucket(self, missing_bucket: bool) -> Self
pub fn missing_bucket(self, missing_bucket: bool) -> Self
Sets the missing_bucket
parameter for the date histogram source.
missing_bucket
- Whether to include documents with missing values in the bucket.
Trait Implementations§
Source§impl Clone for DateHistogramCompositeSource
impl Clone for DateHistogramCompositeSource
Source§fn clone(&self) -> DateHistogramCompositeSource
fn clone(&self) -> DateHistogramCompositeSource
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 DateHistogramCompositeSource
impl Debug for DateHistogramCompositeSource
Source§impl PartialEq for DateHistogramCompositeSource
impl PartialEq for DateHistogramCompositeSource
Source§fn eq(&self, other: &DateHistogramCompositeSource) -> bool
fn eq(&self, other: &DateHistogramCompositeSource) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DateHistogramCompositeSource
Auto Trait Implementations§
impl Freeze for DateHistogramCompositeSource
impl RefUnwindSafe for DateHistogramCompositeSource
impl Send for DateHistogramCompositeSource
impl Sync for DateHistogramCompositeSource
impl Unpin for DateHistogramCompositeSource
impl UnwindSafe for DateHistogramCompositeSource
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