Skip to main content

VertexStream

Trait VertexStream 

Source
pub trait VertexStream: Stream<Item = Result<Vertex>> + Send { }
Expand description

Abstract async iterator that yields Vertexes.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T> VertexStream for T
where T: Stream<Item = Result<Vertex>> + Send,