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

Unification for extracting integer value of Frames

Required Methods§

source

fn to_integer(&self) -> Option<i64>

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

Implementations on Foreign Types§

source§

impl ToInteger for Frame

source§

impl ToInteger for Frame

Implementors§