Enum slog_extlog::stats::BucketLimit [−][src]
pub enum BucketLimit {
Num(i64),
Unbounded,
}Used to represent the upper limit of a bucket.
Variants
Num(i64)A numerical upper limit.
UnboundedRepresents a bucket with no upper limit.
Trait Implementations
impl Debug for BucketLimit[src]
impl Debug for BucketLimitfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for BucketLimit[src]
impl Clone for BucketLimitfn clone(&self) -> BucketLimit[src]
fn clone(&self) -> BucketLimitReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for BucketLimit[src]
impl Copy for BucketLimitimpl PartialEq for BucketLimit[src]
impl PartialEq for BucketLimitfn eq(&self, other: &BucketLimit) -> bool[src]
fn eq(&self, other: &BucketLimit) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &BucketLimit) -> bool[src]
fn ne(&self, other: &BucketLimit) -> boolThis method tests for !=.
impl PartialOrd for BucketLimit[src]
impl PartialOrd for BucketLimitfn partial_cmp(&self, other: &BucketLimit) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &BucketLimit) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &BucketLimit) -> bool[src]
fn lt(&self, other: &BucketLimit) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &BucketLimit) -> bool[src]
fn le(&self, other: &BucketLimit) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &BucketLimit) -> bool[src]
fn gt(&self, other: &BucketLimit) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &BucketLimit) -> bool[src]
fn ge(&self, other: &BucketLimit) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Eq for BucketLimit[src]
impl Eq for BucketLimitimpl Ord for BucketLimit[src]
impl Ord for BucketLimitfn cmp(&self, other: &BucketLimit) -> Ordering[src]
fn cmp(&self, other: &BucketLimit) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Value for BucketLimit[src]
impl Value for BucketLimitfn serialize(
&self,
_record: &Record,
key: Key,
serializer: &mut Serializer
) -> Result[src]
fn serialize(
&self,
_record: &Record,
key: Key,
serializer: &mut Serializer
) -> ResultSerialize self into Serializer Read more
impl Display for BucketLimit[src]
impl Display for BucketLimitAuto Trait Implementations
impl Send for BucketLimit
impl Send for BucketLimitimpl Sync for BucketLimit
impl Sync for BucketLimit