Struct exonum::helpers::Round [] [src]

pub struct Round(pub u32);

Consensus round index.

Methods

impl Round
[src]

[src]

Returns zero value of the round.

Examples

use exonum::helpers::Round;

let round = Round::zero();
assert_eq!(0, round.0);

[src]

Returns first value of the round.

Examples

use exonum::helpers::Round;

let round = Round::first();
assert_eq!(1, round.0);

[src]

Returns next value of the round.

Examples

use exonum::helpers::Round;

let round = Round(20);
let next_round = round.next();
assert_eq!(21, next_round.0);

[src]

Returns previous value of the round.

Panics

Panics if self.0 is equal to zero.

Examples

use exonum::helpers::Round;

let round = Round(10);
let previous_round = round.previous();
assert_eq!(9, previous_round.0);

[src]

Increments the round value.

Examples

use exonum::helpers::Round;

let mut round = Round::zero();
round.increment();
assert_eq!(1, round.0);

[src]

Decrements the round value.

Panics

Panics if self.0 is equal to zero.

Examples

use exonum::helpers::Round;

let mut round = Round(20);
round.decrement();
assert_eq!(19, round.0);

[src]

Returns the iterator over rounds in the range from self to to - 1.

Examples

use exonum::helpers::Round;

let round = Round::zero();
let mut iter = round.iter_to(Round(2));
assert_eq!(Some(Round(0)), iter.next());
assert_eq!(Some(Round(1)), iter.next());
assert_eq!(None, iter.next());

Trait Implementations

impl ExonumJson for Round
[src]

[src]

write deserialized field in buffer on place.

[src]

serialize field as json::Value

impl<'a> Field<'a> for Round
[src]

[src]

Field's header size

[src]

Read Field from buffer, with given position, beware of memory unsafety, you should check Field before read. Read more

[src]

Write Field to buffer, in given position write doesn't lead to memory unsafety. Read more

[src]

Checks if data in the buffer could be deserialized. Returns an index of latest data seen. Read more

impl Debug for Round
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for Round
[src]

impl Clone for Round
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Round
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Round
[src]

impl PartialOrd for Round
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Round
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for Round
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for Round
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Round> for u32
[src]

[src]

Performs the conversion.

impl From<Round> for u64
[src]

[src]

Performs the conversion.

impl CryptoHash for Round
[src]

[src]

Returns a hash of the value. Read more

impl StorageValue for Round
[src]

Important traits for Vec<u8>
[src]

Serialize a value into a vector of bytes.

[src]

Deserialize a value from bytes.

Auto Trait Implementations

impl Send for Round

impl Sync for Round