[][src]Struct transact::protos::merkle::ChangeLogEntry

pub struct ChangeLogEntry {
    pub parent: Vec<u8>,
    pub additions: RepeatedField<Vec<u8>>,
    pub successors: RepeatedField<ChangeLogEntry_Successor>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

parent: Vec<u8>additions: RepeatedField<Vec<u8>>successors: RepeatedField<ChangeLogEntry_Successor>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl ChangeLogEntry[src]

pub fn new() -> ChangeLogEntry[src]

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

pub fn clear_parent(&mut self)[src]

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

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

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

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

pub fn clear_additions(&mut self)[src]

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

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

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

pub fn get_successors(&self) -> &[ChangeLogEntry_Successor][src]

pub fn clear_successors(&mut self)[src]

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

pub fn mut_successors(&mut self) -> &mut RepeatedField<ChangeLogEntry_Successor>[src]

pub fn take_successors(&mut self) -> RepeatedField<ChangeLogEntry_Successor>[src]

Trait Implementations

impl FromProto<ChangeLogEntry> for ChangeLogEntry[src]

impl FromNative<ChangeLogEntry> for ChangeLogEntry[src]

impl IntoNative<ChangeLogEntry> for ChangeLogEntry[src]

impl IntoProto<ChangeLogEntry> for ChangeLogEntry[src]

impl Default for ChangeLogEntry[src]

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

impl Clone for ChangeLogEntry[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<ChangeLogEntry> for ChangeLogEntry[src]

impl Debug for ChangeLogEntry[src]

impl Message for ChangeLogEntry[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for ChangeLogEntry[src]

impl ProtobufValue for ChangeLogEntry[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

fn is_non_zero(&self) -> bool[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

Auto Trait Implementations

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Send + Sync + Clone

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> Same<T> for T

type Output = T

Should always be Self