pub struct WidthBucket {
pub this: Box<Expression>,
pub min_value: Option<Box<Expression>>,
pub max_value: Option<Box<Expression>>,
pub num_buckets: Option<Box<Expression>>,
pub threshold: Option<Box<Expression>>,
}Expand description
WidthBucket
Fields§
§this: Box<Expression>§min_value: Option<Box<Expression>>§max_value: Option<Box<Expression>>§num_buckets: Option<Box<Expression>>§threshold: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for WidthBucket
impl Clone for WidthBucket
Source§fn clone(&self) -> WidthBucket
fn clone(&self) -> WidthBucket
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 WidthBucket
impl Debug for WidthBucket
Source§impl<'de> Deserialize<'de> for WidthBucket
impl<'de> Deserialize<'de> for WidthBucket
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WidthBucket
impl PartialEq for WidthBucket
Source§impl Serialize for WidthBucket
impl Serialize for WidthBucket
impl StructuralPartialEq for WidthBucket
Auto Trait Implementations§
impl Freeze for WidthBucket
impl RefUnwindSafe for WidthBucket
impl Send for WidthBucket
impl Sync for WidthBucket
impl Unpin for WidthBucket
impl UnwindSafe for WidthBucket
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