tinymist_std::typst::foundations

Trait Container

pub trait Container {
    type Inner;
}
Expand description

A container for an argument.

Required Associated Types§

type Inner

The contained type.

Implementations on Foreign Types§

§

impl<T> Container for Option<T>

§

type Inner = T

§

impl<T> Container for Vec<T>

§

type Inner = T

§

impl<T, const N: usize> Container for SmallVec<[T; N]>

§

type Inner = T

Implementors§