[][src]Struct koibumi_node_sync::Rating

pub struct Rating(_);

A rating of the connectivity of a node.

Implementations

impl Rating[src]

pub fn new(value: i8) -> Self[src]

Constructs a rating from a value.

pub fn as_i8(&self) -> i8[src]

Returns the value as i8.

pub fn increment(&mut self)[src]

Increments the rating. The maximum is 10.

pub fn decrement(&mut self)[src]

Decrements the rating. The minimum is -10.

Trait Implementations

impl Clone for Rating[src]

impl Debug for Rating[src]

impl Display for Rating[src]

impl Eq for Rating[src]

impl From<i8> for Rating[src]

impl Hash for Rating[src]

impl Ord for Rating[src]

impl PartialEq<Rating> for Rating[src]

impl PartialOrd<Rating> for Rating[src]

impl StructuralEq for Rating[src]

impl StructuralPartialEq for Rating[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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