pub trait IntoBreadcrumbs {
    type Output: Iterator<Item = Breadcrumb>;

    fn into_breadcrumbs(self) -> Self::Output;
}
Expand description

A helper trait that converts an object into a breadcrumb.

Required Associated Types§

The iterator type for the breadcrumbs.

Required Methods§

This converts the object into an optional breadcrumb.

Implementations on Foreign Types§

Implementors§