Trait WriteAsDefaultUnionVector

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

Trait used by generated code to serialize offsets to union.

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§