[][src]Trait bevy_core::FromBytes

pub trait FromBytes {
    fn from_bytes(bytes: &[u8]) -> Self;
}

Converts a byte array to Self

Required methods

fn from_bytes(bytes: &[u8]) -> Self

Converts a byte array to Self

Loading content...

Implementations on Foreign Types

impl FromBytes for Mat4[src]

impl<T> FromBytes for Option<T> where
    T: FromBytes
[src]

impl<T> FromBytes for Vec<T> where
    T: Sized + Clone + Byteable
[src]

Loading content...

Implementors

impl<T> FromBytes for T where
    T: Byteable + Clone
[src]

Loading content...