hotstuff_rs::hotstuff::messages

Enum HotStuffMessage

source
pub enum HotStuffMessage {
    Proposal(Proposal),
    Nudge(Nudge),
    PhaseVote(PhaseVote),
    NewView(NewView),
}
Expand description

Every kind of message sent between replicas as part of the HotStuff subprotocol.

Variants§

§

Proposal(Proposal)

See Proposal.

§

Nudge(Nudge)

See Nudge.

§

PhaseVote(PhaseVote)

See PhaseVote.

§

NewView(NewView)

See NewView.

Implementations§

source§

impl HotStuffMessage

source

pub fn chain_id(&self) -> ChainID

Get the ChainID associated with the HotStuffMessage.

source

pub fn view(&self) -> ViewNumber

Get the view number associated with a given HotStuffMessage.

source

pub fn size(&self) -> u64

Returns the number of bytes required to store a given instance of the HotStuffMessage enum.

Trait Implementations§

source§

impl BorshDeserialize for HotStuffMessage
where Proposal: BorshDeserialize, Nudge: BorshDeserialize, PhaseVote: BorshDeserialize, NewView: BorshDeserialize,

source§

fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>

§

fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>

Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes.
§

fn try_from_slice(v: &[u8]) -> Result<Self, Error>

Deserialize this instance from a slice of bytes.
§

fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read,

source§

impl BorshSerialize for HotStuffMessage
where Proposal: BorshSerialize, Nudge: BorshSerialize, PhaseVote: BorshSerialize, NewView: BorshSerialize,

source§

fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), Error>

§

fn try_to_vec(&self) -> Result<Vec<u8>, Error>

Serialize this instance into a vector of bytes.
source§

impl Cacheable for HotStuffMessage

source§

fn size(&self) -> u64

source§

fn view(&self) -> ViewNumber

source§

impl Clone for HotStuffMessage

source§

fn clone(&self) -> HotStuffMessage

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 EnumExt for HotStuffMessage
where Proposal: BorshDeserialize, Nudge: BorshDeserialize, PhaseVote: BorshDeserialize, NewView: BorshDeserialize,

source§

fn deserialize_variant<R: Read>( reader: &mut R, variant_idx: u8, ) -> Result<Self, Error>

Deserialises given variant of an enum from the reader. Read more
source§

impl From<HotStuffMessage> for Message

source§

fn from(value: HotStuffMessage) -> Self

Converts to this type from the input type.
source§

impl From<NewView> for HotStuffMessage

source§

fn from(new_view: NewView) -> Self

Converts to this type from the input type.
source§

impl From<Nudge> for HotStuffMessage

source§

fn from(nudge: Nudge) -> Self

Converts to this type from the input type.
source§

impl From<PhaseVote> for HotStuffMessage

source§

fn from(vote: PhaseVote) -> Self

Converts to this type from the input type.
source§

impl From<Proposal> for HotStuffMessage

source§

fn from(proposal: Proposal) -> Self

Converts to this type from the input type.
source§

impl Into<ProgressMessage> for HotStuffMessage

source§

fn into(self) -> ProgressMessage

Converts this type into the (usually inferred) input type.

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
source§

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

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Same for T

source§

type Output = T

Should always be Self
source§

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

source§

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>,

source§

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>,

source§

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