pub trait IntoBreadcrumbs {
type Output: Iterator<Item = Breadcrumb>;
// Required method
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§
Sourcetype Output: Iterator<Item = Breadcrumb>
type Output: Iterator<Item = Breadcrumb>
The iterator type for the breadcrumbs.
Required Methods§
This converts the object into an optional breadcrumb.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".