pub trait ToInteger {
    fn to_integer(&self) -> Option<i64>;
}
Expand description

Unification for extracting integer value of Frames

Required methods

Returns the inner integer value, None in case frame is not integer type

Implementations on Foreign Types

Implementors