pub struct CreateWindowAux {
Show 15 fields pub background_pixmap: Option<u32>, pub background_pixel: Option<u32>, pub border_pixmap: Option<u32>, pub border_pixel: Option<u32>, pub bit_gravity: Option<Gravity>, pub win_gravity: Option<Gravity>, pub backing_store: Option<BackingStore>, pub backing_planes: Option<u32>, pub backing_pixel: Option<u32>, pub override_redirect: Option<u32>, pub save_under: Option<u32>, pub event_mask: Option<u32>, pub do_not_propogate_mask: Option<u32>, pub colormap: Option<u32>, pub cursor: Option<u32>,
}
Expand description

Auxiliary and optional information for the create_window function

Fields

background_pixmap: Option<u32>background_pixel: Option<u32>border_pixmap: Option<u32>border_pixel: Option<u32>bit_gravity: Option<Gravity>win_gravity: Option<Gravity>backing_store: Option<BackingStore>backing_planes: Option<u32>backing_pixel: Option<u32>override_redirect: Option<u32>save_under: Option<u32>event_mask: Option<u32>do_not_propogate_mask: Option<u32>colormap: Option<u32>cursor: Option<u32>

Implementations

Create a new instance with all fields unset / not present.

Set the background_pixmap field of this structure.

Set the background_pixel field of this structure.

Set the border_pixmap field of this structure.

Set the border_pixel field of this structure.

Set the bit_gravity field of this structure.

Set the win_gravity field of this structure.

Set the backing_store field of this structure.

Set the backing_planes field of this structure.

Set the backing_pixel field of this structure.

Set the override_redirect field of this structure.

Set the save_under field of this structure.

Set the event_mask field of this structure.

Set the do_not_propogate_mask field of this structure.

Set the colormap field of this structure.

Set the cursor field of this structure.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more