Trait WriteAsUnionVector

Source
pub trait WriteAsUnionVector<T: ?Sized> { }
Expand description

Trait used by generated code to serialize offsets to unions.

Implementations on Foreign Types§

Source§

impl<P, T: ?Sized + WriteAsUnionVector<P>> WriteAsUnionVector<P> for &T

Source§

impl<T, P> WriteAsUnionVector<P> for [T]
where T: WriteAsUnion<P>,

Source§

impl<T, P> WriteAsUnionVector<P> for Vec<T>
where T: WriteAsUnion<P>,

Source§

impl<T, P, const N: usize> WriteAsUnionVector<P> for [T; N]
where T: WriteAsUnion<P>,

Implementors§