logo
pub trait IntoBreadcrumbs {
    type Output: Iterator;
    fn into_breadcrumbs(self) -> Self::Output;
}
Expand description

A helper trait that converts self into an Iterator of Breadcrumbs.

This is used for the add_breadcrumb function.

Associated Types

The iterator type for the breadcrumbs.

Required methods

This converts the object into an optional breadcrumb.

Implementations on Foreign Types

Implementors