logo
pub trait IntoBreadcrumbs {
    type Output: Iterator
    where
        <Self::Output as Iterator>::Item == Breadcrumb
; 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.

Required Associated Types

The iterator type for the breadcrumbs.

Required Methods

This converts the object into an optional breadcrumb.

Implementations on Foreign Types

Implementors