pub trait GetBacking {
    // Required method
    fn get_backing(&self) -> Option<Backing>;
}
Expand description

Retrieve the backing from an object’s ref.

Required Methods§

source

fn get_backing(&self) -> Option<Backing>

Returns Some Backing if self represents a fractional/groupwise backing of some implicit motion. None if it does not.

Implementors§