Struct exonum::helpers::Height [] [src]

pub struct Height(pub u64);

Blockchain's height (number of blocks).

Methods

impl Height
[src]

[src]

Returns zero value of the height.

Examples

use exonum::helpers::Height;

let height = Height::zero();
assert_eq!(0, height.0);

[src]

Returns next value of the height.

Examples

use exonum::helpers::Height;

let height = Height(10);
let next_height = height.next();
assert_eq!(11, next_height.0);

[src]

Returns previous value of the height.

Panics

Panics if self.0 is equal to zero.

Examples

use exonum::helpers::Height;

let height = Height(10);
let previous_height = height.previous();
assert_eq!(9, previous_height.0);

[src]

Increments the height value.

Examples

use exonum::helpers::Height;

let mut height = Height::zero();
height.increment();
assert_eq!(1, height.0);

[src]

Decrements the height value.

Panics

Panics if self.0 is equal to zero.

Examples

use exonum::helpers::Height;

let mut height = Height(20);
height.decrement();
assert_eq!(19, height.0);

Trait Implementations

impl ExonumJson for Height
[src]

[src]

write deserialized field in buffer on place.

[src]

serialize field as json::Value

impl<'a> Field<'a> for Height
[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 Height
[src]

[src]

Formats the value using the given formatter.

impl Copy for Height
[src]

impl Clone for Height
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Height
[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 Height
[src]

impl PartialOrd for Height
[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 Height
[src]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for Height
[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 Height
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for Height
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for Height
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more