Trait sentry::IntoBreadcrumbs
source · [−]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
Required Methods
This converts the object into an optional breadcrumb.