Skip to main content

ArrayAppend

Trait ArrayAppend 

Source
pub trait ArrayAppend {
    type Output<T>;
}

Required Associated Types§

Source

type Output<T>

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

impl ArrayAppend for Empty

Source§

type Output<T> = Node<T>

Source§

impl<V, N: ArrayAppend> ArrayAppend for Node<V, N>

Source§

type Output<T> = Node<V, <N as ArrayAppend>::Output<T>>