Struct x11rb_protocol::protocol::xproto::ChangeGCRequest
source · [−]pub struct ChangeGCRequest<'input> {
pub gc: Gcontext,
pub value_list: Cow<'input, ChangeGCAux>,
}
Expand description
change graphics context components.
Changes the components specified by value_mask
for the specified graphics context.
Fields
gc
- The graphics context to change.value_list
- Values for each of the components specified in the bitmaskvalue_mask
. The order has to correspond to the order of possiblevalue_mask
bits. See the example.
Errors
Font
- TODO: reasons?GContext
- TODO: reasons?Match
- TODO: reasons?Pixmap
- TODO: reasons?Value
- TODO: reasons?Alloc
- The X server could not allocate the requested resources (no memory?).
Example
/*
* Changes the foreground color component of the specified graphics context.
*
*/
void my_example(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t fg, uint32_t bg) {
/* C99 allows us to use a compact way of changing a single component: */
xcb_change_gc(conn, gc, XCB_GC_FOREGROUND, (uint32_t[]){ fg });
/* The more explicit way. Beware that the order of values is important! */
uint32_t mask = 0;
mask |= XCB_GC_FOREGROUND;
mask |= XCB_GC_BACKGROUND;
uint32_t values[] = {
fg,
bg
};
xcb_change_gc(conn, gc, mask, values);
xcb_flush(conn);
}
Fields
gc: Gcontext
value_list: Cow<'input, ChangeGCAux>
Implementations
sourceimpl<'input> ChangeGCRequest<'input>
impl<'input> ChangeGCRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'input>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &'input [u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
sourcepub fn into_owned(self) -> ChangeGCRequest<'static>
pub fn into_owned(self) -> ChangeGCRequest<'static>
Clone all borrowed data in this ChangeGCRequest.
Trait Implementations
sourceimpl<'input> Clone for ChangeGCRequest<'input>
impl<'input> Clone for ChangeGCRequest<'input>
sourcefn clone(&self) -> ChangeGCRequest<'input>
fn clone(&self) -> ChangeGCRequest<'input>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'input> Debug for ChangeGCRequest<'input>
impl<'input> Debug for ChangeGCRequest<'input>
sourceimpl<'input> Default for ChangeGCRequest<'input>
impl<'input> Default for ChangeGCRequest<'input>
sourcefn default() -> ChangeGCRequest<'input>
fn default() -> ChangeGCRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for ChangeGCRequest<'input>
impl<'input> Hash for ChangeGCRequest<'input>
sourceimpl<'input> Ord for ChangeGCRequest<'input>
impl<'input> Ord for ChangeGCRequest<'input>
sourceimpl<'input> PartialEq<ChangeGCRequest<'input>> for ChangeGCRequest<'input>
impl<'input> PartialEq<ChangeGCRequest<'input>> for ChangeGCRequest<'input>
sourcefn eq(&self, other: &ChangeGCRequest<'input>) -> bool
fn eq(&self, other: &ChangeGCRequest<'input>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ChangeGCRequest<'input>) -> bool
fn ne(&self, other: &ChangeGCRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<ChangeGCRequest<'input>> for ChangeGCRequest<'input>
impl<'input> PartialOrd<ChangeGCRequest<'input>> for ChangeGCRequest<'input>
sourcefn partial_cmp(&self, other: &ChangeGCRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangeGCRequest<'input>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl<'input> Request for ChangeGCRequest<'input>
impl<'input> Request for ChangeGCRequest<'input>
impl<'input> Eq for ChangeGCRequest<'input>
impl<'input> StructuralEq for ChangeGCRequest<'input>
impl<'input> StructuralPartialEq for ChangeGCRequest<'input>
impl<'input> VoidRequest for ChangeGCRequest<'input>
Auto Trait Implementations
impl<'input> RefUnwindSafe for ChangeGCRequest<'input>
impl<'input> Send for ChangeGCRequest<'input>
impl<'input> Sync for ChangeGCRequest<'input>
impl<'input> Unpin for ChangeGCRequest<'input>
impl<'input> UnwindSafe for ChangeGCRequest<'input>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more