Trait flatk::IntoStorage[][src]

pub trait IntoStorage {
    type StorageType;
    fn into_storage(self) -> Self::StorageType;
}
Expand description

Convert a collection into its underlying representation, effectively stripping any organizational info.

Associated Types

Required methods

Implementations on Foreign Types

Since a Vec has no information about the structure of its underlying data, this is effectively a no-op.

Implementors