Struct spreadsheet_ods::refs::ColRange[][src]

pub struct ColRange { /* fields omitted */ }

A range over columns.

Implementations

impl ColRange[src]

pub fn new(col: ucell, to_col: ucell) -> Self[src]

pub fn set_col(&mut self, col: ucell)[src]

pub fn col(&self) -> ucell[src]

pub fn set_to_col(&mut self, to_col: ucell)[src]

pub fn to_col(&self) -> ucell[src]

pub fn contains(&self, col: ucell) -> bool[src]

Is the column in this range. The range is inclusive with the to_col.

Trait Implementations

impl Clone for ColRange[src]

impl Debug for ColRange[src]

impl Default for ColRange[src]

impl Display for ColRange[src]

impl Eq for ColRange[src]

impl PartialEq<ColRange> for ColRange[src]

impl StructuralEq for ColRange[src]

impl StructuralPartialEq for ColRange[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> 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.