pub struct Color {
pub format: PixelFormat,
pub bytes: [u8; 8],
}
Expand description
A color constant.
Fields§
§format: PixelFormat
The format of pixel data stored in bytes
.
The format must use a single plane. The encoding of one pixel
must fit within the bytes
array.
bytes: [u8; 8]
The constant color, expressed as one pixel encoded using format
.
The pixel is encoded using little-endian byte ordering and zero padding.
In other words, the bytes obtained by encoding the pixel using format
are stored starting at the first byte in the array. If the pixel
requires fewer bytes per pixel than the array size, any unused bytes
(towards the end of the array) must be set to 0 (zero).
Trait Implementations§
Source§impl<D: ResourceDialect> Decode<Color, D> for Color
impl<D: ResourceDialect> Decode<Color, D> for Color
Source§impl<D: ResourceDialect, T0: Encode<PixelFormat, D>, T1: Encode<Array<u8, 8>, D>> Encode<Color, D> for (T0, T1)
impl<D: ResourceDialect, T0: Encode<PixelFormat, D>, T1: Encode<Array<u8, 8>, D>> Encode<Color, D> for (T0, T1)
Source§impl Ord for Color
impl Ord for Color
Source§impl PartialOrd for Color
impl PartialOrd for Color
Source§impl TypeMarker for Color
impl TypeMarker for Color
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for Color
impl ValueTypeMarker for Color
impl Copy for Color
impl Eq for Color
impl Persistable for Color
impl StructuralPartialEq for Color
Auto Trait Implementations§
impl Freeze for Color
impl RefUnwindSafe for Color
impl Send for Color
impl Sync for Color
impl Unpin for Color
impl UnwindSafe for Color
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)