[][src]Trait log::kv::Source

pub trait Source {
    fn visit<'kvs>(
        &'kvs self,
        visitor: &mut dyn Visitor<'kvs>
    ) -> Result<(), Error>; fn get<'v>(&'v self, key: Key) -> Option<Value<'v>> { ... }
fn count(&self) -> usize { ... } }

A source of key-value pairs.

The source may be a single pair, a set of pairs, or a filter over a set of pairs. Use the Visitor trait to inspect the structured data in a source.

Required methods

fn visit<'kvs>(&'kvs self, visitor: &mut dyn Visitor<'kvs>) -> Result<(), Error>

Visit key-value pairs.

A source doesn't have to guarantee any ordering or uniqueness of key-value pairs. If the given visitor returns an error then the source may early-return with it, even if there are more key-value pairs.

Implementation notes

A source should yield the same key-value pairs to a subsequent visitor unless that visitor itself fails.

Loading content...

Provided methods

fn get<'v>(&'v self, key: Key) -> Option<Value<'v>>

Get the value for a given key.

If the key appears multiple times in the source then which key is returned is implementation specific.

Implementation notes

A source that can provide a more efficient implementation of this method should override it.

fn count(&self) -> usize

Count the number of key-value pairs that can be visited.

Implementation notes

A source that knows the number of key-value pairs upfront may provide a more efficient implementation.

A subsequent call to visit should yield the same number of key-value pairs to the visitor, unless that visitor fails part way through.

Loading content...

Implementations on Foreign Types

impl<'a, T: ?Sized> Source for &'a T where
    T: Source
[src]

impl<K, V> Source for (K, V) where
    K: ToKey,
    V: ToValue
[src]

impl<S> Source for [S] where
    S: Source
[src]

impl<S> Source for Option<S> where
    S: Source
[src]

impl<S: ?Sized> Source for Box<S> where
    S: Source
[src]

impl<S> Source for Vec<S> where
    S: Source
[src]

impl<K, V, S> Source for HashMap<K, V, S> where
    K: ToKey + Borrow<str> + Eq + Hash,
    V: ToValue,
    S: BuildHasher
[src]

impl<K, V> Source for BTreeMap<K, V> where
    K: ToKey + Borrow<str> + Ord,
    V: ToValue
[src]

Loading content...

Implementors

Loading content...