[][src]Trait arae::Contiguous

pub unsafe trait Contiguous<T>: Bounded<T> { }

Contiguous types are Bounded Sequences that guarantee elements reside next to each other in memory (ie. [T]).

This trait is unsafe as dependencies may implement unsafe behaviour with this guarantee.

Safety

Implementers must ensure all elements reside next to each other in memory.

Implementors

impl<T> Contiguous<T> for CurVec<T>[src]

Loading content...