[][src]Trait bevy_core::AsBytes

pub trait AsBytes {
    fn as_bytes(&self) -> &[u8];
}

Reads the implementing type as a byte array reference

Required methods

fn as_bytes(&self) -> &[u8]

Reads the implementing type as a byte array reference

Loading content...

Implementations on Foreign Types

impl<'a, T> AsBytes for [T] where
    T: Byteable
[src]

Loading content...

Implementors

impl<T> AsBytes for T where
    T: Byteable
[src]

Loading content...