pub trait Corr {
    fn items(&self) -> Vec<Item>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; fn corr(self) -> Correspondence<Self>
    where
        Self: Sized
, { ... } fn synthesize(&self) -> Correspondence<Synthesized> { ... } }
Expand description

Item の集合を表すための trait です。

Required Methods

Provided Methods

Implementors