pub fn try_serialize<T, S>(
    archetype: &Archetype,
    out: &mut S
) -> Result<(), S::Error>where
    T: Component + Serialize,
    S: SerializeTuple,
Available on crate feature column-serialize only.
Expand description

If archetype has T components, serialize them into out

Useful for implementing SerializeContext::serialize_components().