[][src]Struct sonnerie::key_reader::Reader

pub struct Reader { /* fields omitted */ }

Methods

impl Reader[src]

pub fn new(r: File) -> Result<Reader>[src]

Important traits for StringKeyRangeReader<'rdr, 'k, RB>
pub fn get<'rdr, 'k>(
    &'rdr self,
    key: &'k str
) -> StringKeyRangeReader<'rdr, 'k, RangeInclusive<&'k str>>
[src]

Important traits for StringKeyRangeReader<'rdr, 'k, RB>
pub fn get_range<'rdr, 'k, RB>(
    &'rdr self,
    range: RB
) -> StringKeyRangeReader<'rdr, 'k, RB> where
    RB: RangeBounds<&'k str>, 
[src]

Important traits for StringKeyRangeReader<'rdr, 'k, RB>
pub fn get_filter<'rdr, 'k>(
    &'rdr self,
    wildcard: &'k Wildcard
) -> StringKeyRangeReader<'rdr, 'k, RangeFrom<&'k str>>
[src]

pub fn print_info<W: Write>(&self, w: &mut W) -> Result<()>[src]

Auto Trait Implementations

impl RefUnwindSafe for Reader

impl Send for Reader

impl Sync for Reader

impl Unpin for Reader

impl UnwindSafe for Reader

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,