[][src]Struct grid_trait::range::Range0To

pub struct Range0To {
    pub end: i32,
}

Range from 0 to N.

Fields

end: i32

Trait Implementations

impl BoundRange for Range0To[src]

impl Clone for Range0To[src]

impl Copy for Range0To[src]

impl Debug for Range0To[src]

impl Eq for Range0To[src]

impl Hash for Range0To[src]

impl Ord for Range0To[src]

impl PartialEq<Range0To> for Range0To[src]

impl PartialOrd<Range0To> for Range0To[src]

impl RangeBounds<i32> for Range0To[src]

impl RangeBoundsPlus for Range0To[src]

type Output = Range<i32>

impl RangeBoundsTimes for Range0To[src]

impl StructuralEq for Range0To[src]

impl StructuralPartialEq for Range0To[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.