Struct xlsxwriter::DataValidation[][src]

pub struct DataValidation {
Show fields pub validate: DataValidationType, pub criteria: DataValidationCriteria, pub ignore_blank: bool, pub show_input: bool, pub show_error: bool, pub error_type: DataValidationErrorType, pub dropdown: bool, pub value_number: f64, pub value_formula: Option<String>, pub value_list: Option<Vec<String>>, pub value_datetime: DateTime, pub minimum_number: f64, pub minimum_formula: Option<String>, pub minimum_datetime: DateTime, pub maximum_number: f64, pub maximum_formula: Option<String>, pub maximum_datetime: DateTime, pub input_title: Option<String>, pub input_message: Option<String>, pub error_title: Option<String>, pub error_message: Option<String>,
}

Fields

validate: DataValidationTypecriteria: DataValidationCriteriaignore_blank: boolshow_input: boolshow_error: boolerror_type: DataValidationErrorTypedropdown: boolvalue_number: f64value_formula: Option<String>value_list: Option<Vec<String>>value_datetime: DateTimeminimum_number: f64minimum_formula: Option<String>minimum_datetime: DateTimemaximum_number: f64maximum_formula: Option<String>maximum_datetime: DateTimeinput_title: Option<String>input_message: Option<String>error_title: Option<String>error_message: Option<String>

Implementations

impl DataValidation[src]

pub fn new(
    validate: DataValidationType,
    criteria: DataValidationCriteria,
    error_type: DataValidationErrorType
) -> DataValidation
[src]

Trait Implementations

impl Clone for DataValidation[src]

impl Debug for DataValidation[src]

impl PartialEq<DataValidation> for DataValidation[src]

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