[][src]Trait gut::Pod

pub trait Pod: 'static + Copy + Sized + Send + Sync + Any { }

Plain old data trait. Types that implement this trait contain no references and can be copied with memcpy. The additional Any trait lets us inspect the type more easily.

Implementors

impl<T> Pod for T where
    T: 'static + Copy + Sized + Send + Sync + Any
[src]

Loading content...