pub trait HealthEditableExtwhere
    Self: IsA<Editable>,{
    // Required method
    fn raw_value<T>(&self) -> Option<T>
       where T: FromStr + Default,
             <T as FromStr>::Err: Debug;
}

Required Methods§

source

fn raw_value<T>(&self) -> Option<T>where T: FromStr + Default, <T as FromStr>::Err: Debug,

Get the number-value of a gtk::Editable, even if the user hasn’t pressed Enter yet to commit the value.

Returns

The value of the gtk::Editable or T::default().

Implementors§

source§

impl<B> HealthEditableExt for Bwhere B: IsA<Editable>,