Trait gut::Pod[][src]

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

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