[][src]Struct dgraph_rs::protos::api::Latency

pub struct Latency {
    pub parsing_ns: u64,
    pub processing_ns: u64,
    pub encoding_ns: u64,
    pub assign_timestamp_ns: u64,
    pub total_ns: u64,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

parsing_ns: u64processing_ns: u64encoding_ns: u64assign_timestamp_ns: u64total_ns: u64unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Latency[src]

pub fn new() -> Latency[src]

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

pub fn clear_parsing_ns(&mut self)[src]

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

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

pub fn clear_processing_ns(&mut self)[src]

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

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

pub fn clear_encoding_ns(&mut self)[src]

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

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

pub fn clear_assign_timestamp_ns(&mut self)[src]

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

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

pub fn clear_total_ns(&mut self)[src]

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

Trait Implementations

impl Clear for Latency[src]

impl Clone for Latency[src]

impl Debug for Latency[src]

impl Default for Latency[src]

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

impl Message for Latency[src]

impl PartialEq<Latency> for Latency[src]

impl ProtobufValue for Latency[src]

impl StructuralPartialEq for Latency[src]

Auto Trait Implementations

impl RefUnwindSafe for Latency

impl Send for Latency

impl Sync for Latency

impl Unpin for Latency

impl UnwindSafe for Latency

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,