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,
}
Expand description

Generated files are compatible only with the same version of protobuf runtime.

Fields§

§parent: Vec<u8>§additions: RepeatedField<Vec<u8>>§successors: RepeatedField<ChangeLogEntry_Successor>§unknown_fields: UnknownFields§cached_size: CachedSize

Implementations§

source§

impl ChangeLogEntry

source

pub fn new() -> ChangeLogEntry

source

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

source

pub fn clear_parent(&mut self)

source

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

source

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

source

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

source

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

source

pub fn clear_additions(&mut self)

source

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

source

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

source

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

source

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

source

pub fn clear_successors(&mut self)

source

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

source

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

source

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

Trait Implementations§

source§

impl Clear for ChangeLogEntry

source§

fn clear(&mut self)

Clear this make, make it equivalent to newly created object.
source§

impl Clone for ChangeLogEntry

source§

fn clone(&self) -> ChangeLogEntry

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ChangeLogEntry

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Default for &'a ChangeLogEntry

source§

fn default() -> &'a ChangeLogEntry

Returns the “default value” for a type. Read more
source§

impl Default for ChangeLogEntry

source§

fn default() -> ChangeLogEntry

Returns the “default value” for a type. Read more
source§

impl Message for ChangeLogEntry

source§

fn is_initialized(&self) -> bool

True iff all required fields are initialized. Always returns true for protobuf 3.
source§

fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> ProtobufResult<()>

Update this message object with fields read from given stream.
source§

fn compute_size(&self) -> u32

Compute and cache size of this message and all nested messages
source§

fn write_to_with_cached_sizes( &self, os: &mut CodedOutputStream<'_> ) -> ProtobufResult<()>

Write message to the stream. Read more
source§

fn get_cached_size(&self) -> u32

Get size previously computed by compute_size.
source§

fn get_unknown_fields(&self) -> &UnknownFields

Get a reference to unknown fields.
source§

fn mut_unknown_fields(&mut self) -> &mut UnknownFields

Get a mutable reference to unknown fields.
source§

fn as_any(&self) -> &dyn Any

View self as Any.
source§

fn as_any_mut(&mut self) -> &mut dyn Any

View self as mutable Any.
source§

fn into_any(self: Box<Self>) -> Box<dyn Any>

Convert boxed self to boxed Any.
source§

fn descriptor(&self) -> &'static MessageDescriptor

Message descriptor for this message, used for reflection.
source§

fn new() -> ChangeLogEntry

Create an empty message object. Read more
source§

fn descriptor_static() -> &'static MessageDescriptor

Get message descriptor for message type. Read more
source§

fn default_instance() -> &'static ChangeLogEntry

Return a pointer to default immutable message with static lifetime. Read more
source§

fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self, ProtobufError>
where Self: Sized,

Parse message from stream.
source§

fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<(), ProtobufError>

Write the message to the stream. Read more
source§

fn write_length_delimited_to( &self, os: &mut CodedOutputStream<'_> ) -> Result<(), ProtobufError>

Write the message to the stream prepending the message with message length encoded as varint.
source§

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

Write the message to the vec, prepend the message with message length encoded as varint.
source§

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

Update this message object with fields read from given stream.
source§

fn parse_from_reader(reader: &mut dyn Read) -> Result<Self, ProtobufError>
where Self: Sized,

Parse message from reader. Parse stops on EOF or when error encountered.
source§

fn parse_from_bytes(bytes: &[u8]) -> Result<Self, ProtobufError>
where Self: Sized,

Parse message from byte array.
source§

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

Check if all required fields of this object are initialized.
source§

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

Write the message to the writer.
source§

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

Write the message to bytes vec.
source§

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

Write the message to bytes vec.
source§

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

Write the message to the writer, prepend the message with message length encoded as varint.
source§

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

Write the message to the bytes vec, prepend the message with message length encoded as varint.
source§

fn type_id(&self) -> TypeId

Get type id for downcasting.
source§

impl PartialEq for ChangeLogEntry

source§

fn eq(&self, other: &ChangeLogEntry) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ProtobufValue for ChangeLogEntry

source§

fn as_ref(&self) -> ReflectValueRef<'_>

As ref
source§

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

Convert to Any
source§

fn is_non_zero(&self) -> bool

Is value non-zero?
source§

fn as_ref_copy(&self) -> ReflectValueRef<'static>

Return ProtobufValueRef if self is Copy. Read more
source§

impl StructuralPartialEq for ChangeLogEntry

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

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

§

fn clone_boxed(&self) -> Box<dyn DefaultFeatures<'a>>

Clone this value, and then immediately put it into a Box behind a trait object of this trait.
§

fn self_address_mut(&mut self) -> *mut ()

Returns the address of self. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression
where Self: AsExpression<T> + Sized,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
§

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

§

fn clone_boxed(&self) -> Box<dyn NonSyncFeatures<'a>>

Clone this value, and then immediately put it into a Box behind a trait object of this trait.
§

fn self_address_mut(&mut self) -> *mut ()

Returns the address of self. Read more
§

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

§

fn borrow_replacement(ptr: &T) -> &T

Given ptr, which was obtained from a prior call to Self::borrow(), return a value with the same nominal lifetime which is guaranteed to survive mutations to Self. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more