Struct gapi_grpc::google::api::servicecontrol::v1::distribution::ExponentialBuckets[][src]

pub struct ExponentialBuckets {
    pub num_finite_buckets: i32,
    pub growth_factor: f64,
    pub scale: f64,
}

Describing buckets with exponentially growing width.

Fields

num_finite_buckets: i32

The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is num_finite_buckets + 2. See comments on bucket_options for details.

growth_factor: f64

The i’th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be larger than 1.0.

scale: f64

The i’th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be > 0.

Trait Implementations

impl Clone for ExponentialBuckets[src]

impl Debug for ExponentialBuckets[src]

impl Default for ExponentialBuckets[src]

impl Message for ExponentialBuckets[src]

impl PartialEq<ExponentialBuckets> for ExponentialBuckets[src]

impl StructuralPartialEq for ExponentialBuckets[src]

Auto Trait Implementations

impl RefUnwindSafe for ExponentialBuckets

impl Send for ExponentialBuckets

impl Sync for ExponentialBuckets

impl Unpin for ExponentialBuckets

impl UnwindSafe for ExponentialBuckets

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]