tinymist_
std
0.13.12-rc4
Container
Required Associated Types
Inner
Implementations on Foreign Types
Option<T>
SmallVec<[T; N]>
Vec<T>
Implementors
In tinymist_
std::
typst::
foundations
tinymist_std
::
typst
::
foundations
Trait
Container
Copy item path
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
§