#[repr(C)]pub struct xAllocColorCellsReply {
pub type_: BYTE,
pub pad1: BYTE,
pub sequenceNumber: CARD16,
pub length: CARD32,
pub nPixels: CARD16,
pub nMasks: CARD16,
pub pad3: CARD32,
pub pad4: CARD32,
pub pad5: CARD32,
pub pad6: CARD32,
pub pad7: CARD32,
}Fields§
§type_: BYTE§pad1: BYTE§sequenceNumber: CARD16§length: CARD32§nPixels: CARD16§nMasks: CARD16§pad3: CARD32§pad4: CARD32§pad5: CARD32§pad6: CARD32§pad7: CARD32Trait Implementations§
Source§impl Clone for xAllocColorCellsReply
impl Clone for xAllocColorCellsReply
Source§fn clone(&self) -> xAllocColorCellsReply
fn clone(&self) -> xAllocColorCellsReply
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for xAllocColorCellsReply
impl Debug for xAllocColorCellsReply
Source§impl Parcel for xAllocColorCellsReply
impl Parcel for xAllocColorCellsReply
Source§fn read_field(
__io_reader: &mut dyn Read,
__settings: &Settings,
_: &mut Hints,
) -> Result<Self>
fn read_field( __io_reader: &mut dyn Read, __settings: &Settings, _: &mut Hints, ) -> Result<Self>
Reads a value from a stream. Read more
Source§fn write_field(
&self,
__io_writer: &mut dyn Write,
__settings: &Settings,
_: &mut Hints,
) -> Result<()>
fn write_field( &self, __io_writer: &mut dyn Write, __settings: &Settings, _: &mut Hints, ) -> Result<()>
Writes a value to a stream.
Source§fn read(read: &mut dyn Read, settings: &Settings) -> Result<Self, Error>
fn read(read: &mut dyn Read, settings: &Settings) -> Result<Self, Error>
Reads a new item with a fresh set of hints. Read more
Source§fn write(&self, write: &mut dyn Write, settings: &Settings) -> Result<(), Error>
fn write(&self, write: &mut dyn Write, settings: &Settings) -> Result<(), Error>
Writes a value to a stream.
Source§fn into_stream(self, settings: &Settings) -> Result<Cursor<Vec<u8>>, Error>
fn into_stream(self, settings: &Settings) -> Result<Cursor<Vec<u8>>, Error>
Convers the value into a byte stream that implements
std::io::Read.Source§fn from_raw_bytes(bytes: &[u8], settings: &Settings) -> Result<Self, Error>
fn from_raw_bytes(bytes: &[u8], settings: &Settings) -> Result<Self, Error>
Parses a new value from its raw byte representation. Read more
Source§fn field_from_raw_bytes(
bytes: &[u8],
settings: &Settings,
hints: &mut Hints,
) -> Result<Self, Error>
fn field_from_raw_bytes( bytes: &[u8], settings: &Settings, hints: &mut Hints, ) -> Result<Self, Error>
Parses a new value from its raw byte representation. Read more
Source§fn raw_bytes(&self, settings: &Settings) -> Result<Vec<u8>, Error>
fn raw_bytes(&self, settings: &Settings) -> Result<Vec<u8>, Error>
Gets the raw byte representation of the value.
Source§impl PartialEq for xAllocColorCellsReply
impl PartialEq for xAllocColorCellsReply
impl Copy for xAllocColorCellsReply
impl Eq for xAllocColorCellsReply
impl StructuralPartialEq for xAllocColorCellsReply
Auto Trait Implementations§
impl Freeze for xAllocColorCellsReply
impl RefUnwindSafe for xAllocColorCellsReply
impl Send for xAllocColorCellsReply
impl Sync for xAllocColorCellsReply
impl Unpin for xAllocColorCellsReply
impl UnwindSafe for xAllocColorCellsReply
Blanket Implementations§
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