Trait Extractor

Source
pub trait Extractor<T> {
    // Required method
    fn inner(&self) -> &T;
}
Expand description

Extractor

Required Methods§

Source

fn inner(&self) -> &T

Inner

Get inner value.

Implementors§