[][src]Struct karo::Row

pub struct Row { /* fields omitted */ }

Methods

impl Row[src]

pub fn saturating_add(self, num: u32) -> Self[src]

Add a number of rows, saturate the value to the highest row number available.

pub fn saturating_sub(self, num: u32) -> Self[src]

Subtract a number of rows, saturate the value to the lowest row number available.

pub fn checked_add(self, num: u32) -> Option<Self>[src]

Add a number of rows, checking the value range.

pub fn checked_sub(self, num: u32) -> Option<Self>[src]

Subtract a number of rows, saturate the value to the lowest row number available.

Trait Implementations

impl AsRangeString for Row[src]

type Mode = ReferenceMode

impl Into<u32> for Row[src]

impl From<Row> for RowRange[src]

impl Clone for Row[src]

impl Copy for Row[src]

impl Default for Row[src]

impl Eq for Row[src]

impl Ord for Row[src]

impl PartialEq<Row> for Row[src]

impl PartialOrd<Row> for Row[src]

impl Debug for Row[src]

impl TryFrom<u32> for Row[src]

type Error = Error

The type returned in the event of a conversion error.

impl Hash for Row[src]

impl StructuralPartialEq for Row[src]

impl StructuralEq for Row[src]

Auto Trait Implementations

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl UnwindSafe for Row

impl RefUnwindSafe for Row

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]