Trait rgb::ComponentBytes [−][src]
Casting a slice of RGB/A values to a slice of u8
If instead of RGB8 you use RGB<MyCustomType>, and you want to cast from/to that custom type,
implement the Plain trait for it:
unsafe impl rgb::Pod for MyCustomType {} unsafe impl rgb::Zeroable for MyCustomType {}
Plain types are not allowed to contain struct padding, booleans, chars, enums, references or pointers.
Provided methods
fn as_bytes(&self) -> &[u8][src]
The components interpreted as raw bytes, in machine’s native endian. In RGB bytes of the red component are first.
fn as_bytes_mut(&mut self) -> &mut [u8][src]
The components interpreted as raw bytes, in machine’s native endian. In RGB bytes of the red component are first.