Struct tipb::StreamResponse[][src]

pub struct StreamResponse {
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl StreamResponse[src]

pub fn new() -> StreamResponse[src]

pub fn get_error(&self) -> &Error[src]

pub fn clear_error(&mut self)[src]

pub fn has_error(&self) -> bool[src]

pub fn set_error(&mut self, v: Error)[src]

pub fn mut_error(&mut self) -> &mut Error[src]

pub fn take_error(&mut self) -> Error[src]

pub fn get_data(&self) -> &[u8][src]

pub fn clear_data(&mut self)[src]

pub fn has_data(&self) -> bool[src]

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

pub fn mut_data(&mut self) -> &mut Vec<u8>[src]

pub fn take_data(&mut self) -> Vec<u8>[src]

pub fn get_warnings(&self) -> &[Error][src]

pub fn clear_warnings(&mut self)[src]

pub fn set_warnings(&mut self, v: RepeatedField<Error>)[src]

pub fn mut_warnings(&mut self) -> &mut RepeatedField<Error>[src]

pub fn take_warnings(&mut self) -> RepeatedField<Error>[src]

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

pub fn clear_output_counts(&mut self)[src]

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

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

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

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

pub fn clear_warning_count(&mut self)[src]

pub fn has_warning_count(&self) -> bool[src]

pub fn set_warning_count(&mut self, v: i64)[src]

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

pub fn clear_ndvs(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for StreamResponse[src]

impl Clone for StreamResponse[src]

impl Debug for StreamResponse[src]

impl Default for StreamResponse[src]

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

impl Message for StreamResponse[src]

impl PartialEq<StreamResponse> for StreamResponse[src]

impl PbPrint for StreamResponse[src]

impl ProtobufValue for StreamResponse[src]

impl StructuralPartialEq for StreamResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for StreamResponse

impl Send for StreamResponse

impl Sync for StreamResponse

impl Unpin for StreamResponse

impl UnwindSafe for StreamResponse

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.