gimli::read

Trait ArrayLike

Source
pub trait ArrayLike: Sealed {
    type Item;
}
Expand description

Marker trait for types that can be used as backing storage when a growable array type is needed.

This trait is sealed and cannot be implemented for types outside this crate.

Required Associated Types§

Source

type Item

Type of the elements being stored.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> ArrayLike for [T; 0]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 1]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 2]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 3]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 4]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 8]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 16]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 32]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 64]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 128]

Source§

type Item = T

Source§

impl<T> ArrayLike for [T; 192]

Source§

type Item = T

Source§

impl<T> ArrayLike for Vec<T>

Source§

type Item = T

Implementors§