[][src]Struct umya_spreadsheet::structs::conditional::Conditional

pub struct Conditional { /* fields omitted */ }

Implementations

impl Conditional[src]

pub const CONDITION_NONE: &'static str[src]

pub const CONDITION_CELLIS: &'static str[src]

pub const CONDITION_CONTAINSTEXT: &'static str[src]

pub const CONDITION_EXPRESSION: &'static str[src]

pub const CONDITION_CONTAINSBLANKS: &'static str[src]

pub const CONDITION_NOTCONTAINSBLANKS: &'static str[src]

pub const OPERATOR_NONE: &'static str[src]

pub const OPERATOR_BEGINSWITH: &'static str[src]

pub const OPERATOR_ENDSWITH: &'static str[src]

pub const OPERATOR_EQUAL: &'static str[src]

pub const OPERATOR_GREATERTHAN: &'static str[src]

pub const OPERATOR_GREATERTHANOREQUAL: &'static str[src]

pub const OPERATOR_LESSTHAN: &'static str[src]

pub const OPERATOR_LESSTHANOREQUAL: &'static str[src]

pub const OPERATOR_NOTEQUAL: &'static str[src]

pub const OPERATOR_CONTAINSTEXT: &'static str[src]

pub const OPERATOR_NOTCONTAINS: &'static str[src]

pub const OPERATOR_BETWEEN: &'static str[src]

pub const OPERATOR_NOTBETWEEN: &'static str[src]

pub fn get_condition_type(&self) -> &str[src]

pub fn get_operator_type(&self) -> &str[src]

pub fn get_data_type(&self) -> &str[src]

pub fn get_text(&self) -> &str[src]

pub fn get_priority(&self) -> &usize[src]

pub fn get_percent(&self) -> &usize[src]

pub fn get_bottom(&self) -> &usize[src]

pub fn get_rank(&self) -> &usize[src]

pub fn get_stop_if_true(&self) -> &bool[src]

pub fn get_condition(&self) -> &Vec<String>[src]

pub fn get_cfvo_collection(
    &self
) -> &Vec<(String, Option<String>, Option<Color>)>
[src]

pub fn get_style(&self) -> &Option<Style>[src]

Trait Implementations

impl Clone for Conditional[src]

impl Debug for Conditional[src]

impl Default for Conditional[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.