Trait CycleCollection

Source
pub trait CycleCollection<'a, Marker>: CycleComplete<'a, Marker>
where Marker: CycleMarker,
{ type Location: Location<'a>; // Required method fn create_source(ident: Ident, location: Self::Location) -> Self; }

Required Associated Types§

Required Methods§

Source

fn create_source(ident: Ident, location: Self::Location) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, T, L> CycleCollection<'a, ForwardRefMarker> for Optional<T, Tick<L>, Bounded>
where L: Location<'a>,

Source§

impl<'a, T, L> CycleCollection<'a, ForwardRefMarker> for Singleton<T, Tick<L>, Bounded>
where L: Location<'a>,

Source§

impl<'a, T, L> CycleCollection<'a, TickCycleMarker> for Optional<T, Tick<L>, Bounded>
where L: Location<'a>,

Source§

impl<'a, T, L, B> CycleCollection<'a, ForwardRefMarker> for Optional<T, L, B>
where L: Location<'a> + NoTick,

Source§

impl<'a, T, L, B> CycleCollection<'a, ForwardRefMarker> for Singleton<T, L, B>
where L: Location<'a> + NoTick,

Source§

impl<'a, T, L, B, O> CycleCollection<'a, ForwardRefMarker> for Stream<T, L, B, O>
where L: Location<'a> + NoTick,

Source§

impl<'a, T, L, O> CycleCollection<'a, TickCycleMarker> for Stream<T, Tick<L>, Bounded, O>
where L: Location<'a>,