Trait sentry::internals::IntoBreadcrumbs[][src]

pub trait IntoBreadcrumbs {
    type Output: Iterator<Item = Breadcrumb>;
    fn into_breadcrumbs(self) -> Self::Output;
}

A helper trait that converts an object into a breadcrumb.

Associated Types

The iterator type for the breadcrumbs.

Required Methods

This converts the object into an optional breadcrumb.

Implementations on Foreign Types

impl IntoBreadcrumbs for Vec<Breadcrumb>
[src]

impl IntoBreadcrumbs for Option<Breadcrumb>
[src]

Implementors