[][src]Trait df_st_core::fillable::ConvertingUtils

pub trait ConvertingUtils {
    pub fn to_uniform_name(&self) -> Option<String> { ... }
pub fn negative_to_none(&self) -> Option<i32> { ... }
pub fn remove_negative(&self) -> Option<Vec<i32>> { ... } }

Provided methods

pub fn to_uniform_name(&self) -> Option<String>[src]

Convert a the String to lowercase and replace underscore.

pub fn negative_to_none(&self) -> Option<i32>[src]

Negative numbers to None Use to set -1 values to None

pub fn remove_negative(&self) -> Option<Vec<i32>>[src]

Remove negative numbers from the list Use to remove -1 values

Loading content...

Implementations on Foreign Types

impl ConvertingUtils for Option<String>[src]

impl ConvertingUtils for Option<i32>[src]

impl ConvertingUtils for Option<Vec<i32>>[src]

Loading content...

Implementors

Loading content...