pub struct AppendEntriesRequest {
    pub term: u32,
    pub prev_log_term: u32,
    pub prev_log_index: u16,
    pub leader_commit: u16,
    pub entries: Vec<Entry, 1>,
}
Expand description

uavcan.pnp.cluster.AppendEntries.1.0

Size ranges from 13 to 35 bytes

Fields

term: u32

saturated uint32

Always aligned, size 32 bits

prev_log_term: u32

saturated uint32

Always aligned, size 32 bits

prev_log_index: u16

saturated uint16

Always aligned, size 16 bits

leader_commit: u16

saturated uint16

Always aligned, size 16 bits

entries: Vec<Entry, 1>

uavcan.pnp.cluster.Entry.1.0[<=1]

Always aligned, size ranges from 0 to 176 bits

Implementations

Trait Implementations

The sealed or delimited property of this type

Deserializes a value and returns it

Deserializes a value from a slice of bytes and returns it Read more

A convenience function that creates a cursor around the provided bytes and calls deserialize Read more

Returns the size of the encoded form of this value, in bits Read more

Serializes this value into a buffer Read more

A convenience function that creates a cursor around the provided bytes and calls serialize Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.