Skip to main content

ArrayElements

Trait ArrayElements 

Source
pub trait ArrayElements {
    type Element;
}
Expand description

Marker for outputs that stream element by element (Vec<T>).

Required Associated Types§

Source

type Element

The element type.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> ArrayElements for Vec<T>

Implementors§