[][src]Struct apollo_tracing_protobuf::FieldStat

pub struct FieldStat {
    pub return_type: String,
    pub errors_count: u64,
    pub count: u64,
    pub requests_with_errors_count: u64,
    pub latency_count: Vec<i64>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

return_type: Stringerrors_count: u64count: u64requests_with_errors_count: u64latency_count: Vec<i64>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl FieldStat[src]

pub fn new() -> FieldStat[src]

pub fn get_return_type(&self) -> &str[src]

pub fn clear_return_type(&mut self)[src]

pub fn set_return_type(&mut self, v: String)[src]

pub fn mut_return_type(&mut self) -> &mut String[src]

pub fn take_return_type(&mut self) -> String[src]

pub fn get_errors_count(&self) -> u64[src]

pub fn clear_errors_count(&mut self)[src]

pub fn set_errors_count(&mut self, v: u64)[src]

pub fn get_count(&self) -> u64[src]

pub fn clear_count(&mut self)[src]

pub fn set_count(&mut self, v: u64)[src]

pub fn get_requests_with_errors_count(&self) -> u64[src]

pub fn clear_requests_with_errors_count(&mut self)[src]

pub fn set_requests_with_errors_count(&mut self, v: u64)[src]

pub fn get_latency_count(&self) -> &[i64][src]

pub fn clear_latency_count(&mut self)[src]

pub fn set_latency_count(&mut self, v: Vec<i64>)[src]

pub fn mut_latency_count(&mut self) -> &mut Vec<i64>[src]

pub fn take_latency_count(&mut self) -> Vec<i64>[src]

Trait Implementations

impl Clear for FieldStat[src]

impl Clone for FieldStat[src]

impl Debug for FieldStat[src]

impl Default for FieldStat[src]

impl<'a> Default for &'a FieldStat[src]

impl Message for FieldStat[src]

impl PartialEq<FieldStat> for FieldStat[src]

impl ProtobufValue for FieldStat[src]

impl StructuralPartialEq for FieldStat[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<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.