Struct x11rb_protocol::protocol::xproto::AllocColorRequest
source · pub struct AllocColorRequest {
pub cmap: Colormap,
pub red: u16,
pub green: u16,
pub blue: u16,
}
Expand description
Allocate a color.
Allocates a read-only colormap entry corresponding to the closest RGB value supported by the hardware. If you are using TrueColor, you can take a shortcut and directly calculate the color pixel value to avoid the round trip. But, for example, on 16-bit color setups (VNC), you can easily get the closest supported RGB value to the RGB value you are specifying.
§Fields
cmap
- TODOred
- The red value of your color.green
- The green value of your color.blue
- The blue value of your color.
§Errors
Colormap
- The specified colormapcmap
does not exist.
Fields§
§cmap: Colormap
§red: u16
§green: u16
§blue: u16
Implementations§
source§impl AllocColorRequest
impl AllocColorRequest
sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations§
source§impl Clone for AllocColorRequest
impl Clone for AllocColorRequest
source§fn clone(&self) -> AllocColorRequest
fn clone(&self) -> AllocColorRequest
Returns a copy 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 AllocColorRequest
impl Debug for AllocColorRequest
source§impl Default for AllocColorRequest
impl Default for AllocColorRequest
source§fn default() -> AllocColorRequest
fn default() -> AllocColorRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AllocColorRequest
impl<'de> Deserialize<'de> for AllocColorRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for AllocColorRequest
impl Hash for AllocColorRequest
source§impl Ord for AllocColorRequest
impl Ord for AllocColorRequest
source§fn cmp(&self, other: &AllocColorRequest) -> Ordering
fn cmp(&self, other: &AllocColorRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AllocColorRequest
impl PartialEq for AllocColorRequest
source§fn eq(&self, other: &AllocColorRequest) -> bool
fn eq(&self, other: &AllocColorRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for AllocColorRequest
impl PartialOrd for AllocColorRequest
source§fn partial_cmp(&self, other: &AllocColorRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &AllocColorRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ReplyRequest for AllocColorRequest
impl ReplyRequest for AllocColorRequest
§type Reply = AllocColorReply
type Reply = AllocColorReply
The kind of reply that this request generates.
source§impl Request for AllocColorRequest
impl Request for AllocColorRequest
source§impl Serialize for AllocColorRequest
impl Serialize for AllocColorRequest
impl Copy for AllocColorRequest
impl Eq for AllocColorRequest
impl StructuralPartialEq for AllocColorRequest
Auto Trait Implementations§
impl Freeze for AllocColorRequest
impl RefUnwindSafe for AllocColorRequest
impl Send for AllocColorRequest
impl Sync for AllocColorRequest
impl Unpin for AllocColorRequest
impl UnwindSafe for AllocColorRequest
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