Trait flatk::StorageMut[][src]

pub trait StorageMut: Storage {
    fn storage_mut(&mut self) -> &mut Self::Storage;
}
Expand description

Get a mutable reference to the underlying storage type.

Required methods

Implementations on Foreign Types

A range is a type of storage, simply return a mutable reference to self.

A slice is a type of storage, simply return a mutable reference to self.

Vec is a type of storage, simply return a mutable reference to self.

Implementors