Struct kvproto::cdcpb::EventRow[][src]

pub struct EventRow {
    pub start_ts: u64,
    pub commit_ts: u64,
    pub r_type: EventLogType,
    pub op_type: EventRowOpType,
    pub key: Vec<u8>,
    pub value: Vec<u8>,
    pub old_value: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

start_ts: u64commit_ts: u64r_type: EventLogTypeop_type: EventRowOpTypekey: Vec<u8>value: Vec<u8>old_value: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl EventRow[src]

pub fn new() -> EventRow[src]

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

pub fn clear_start_ts(&mut self)[src]

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

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

pub fn clear_commit_ts(&mut self)[src]

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

pub fn get_type(&self) -> EventLogType[src]

pub fn clear_type(&mut self)[src]

pub fn set_type(&mut self, v: EventLogType)[src]

pub fn get_op_type(&self) -> EventRowOpType[src]

pub fn clear_op_type(&mut self)[src]

pub fn set_op_type(&mut self, v: EventRowOpType)[src]

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

pub fn clear_key(&mut self)[src]

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

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

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

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

pub fn clear_value(&mut self)[src]

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

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

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

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

pub fn clear_old_value(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for EventRow[src]

impl Clone for EventRow[src]

impl Debug for EventRow[src]

impl Default for EventRow[src]

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

impl Message for EventRow[src]

impl PartialEq<EventRow> for EventRow[src]

impl PbPrint for EventRow[src]

impl ProtobufValue for EventRow[src]

impl StructuralPartialEq for EventRow[src]

Auto Trait Implementations

impl RefUnwindSafe for EventRow

impl Send for EventRow

impl Sync for EventRow

impl Unpin for EventRow

impl UnwindSafe for EventRow

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.