Struct xcb::x::QueryTextExtents

source ·
pub struct QueryTextExtents<'a> {
    pub font: Fontable,
    pub string: &'a [Char2b],
}
Expand description

get text extents

Query text extents from the X11 server. This request returns the bounding box of the specified 16-bit character string in the specified font or the font contained in the specified graphics context.

font_ascent is set to the maximum of the ascent metrics of all characters in the string. font_descent is set to the maximum of the descent metrics. overall_width is set to the sum of the character-width metrics of all characters in the string. For each character in the string, let W be the sum of the character-width metrics of all characters preceding it in the string. Let L be the left-side-bearing metric of the character plus W. Let R be the right-side-bearing metric of the character plus W. The lbearing member is set to the minimum L of all characters in the string. The rbearing member is set to the maximum R.

For fonts defined with linear indexing rather than 2-byte matrix indexing, each Char2b structure is interpreted as a 16-bit number with byte1 as the most significant byte. If the font has no defined default character, undefined characters in the string are taken to have all zero metrics.

Characters with all zero metrics are ignored. If the font has no defined default_char, the undefined characters in the string are also ignored.

This request replies QueryTextExtentsReply.

Associated cookie types are QueryTextExtentsCookie and QueryTextExtentsCookieUnchecked.

Fields§

§font: Fontable

The font to calculate text extents in. You can also pass a graphics context.

§string: &'a [Char2b]

The text to get text extents for.

Trait Implementations§

source§

impl<'a> Clone for QueryTextExtents<'a>

source§

fn clone(&self) -> QueryTextExtents<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for QueryTextExtents<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> RawRequest for QueryTextExtents<'a>

source§

fn raw_request(&self, c: &Connection, checked: bool) -> u64

Actual implementation of the request sending Read more
source§

impl<'a> Request for QueryTextExtents<'a>

§

type Cookie = QueryTextExtentsCookie

The default cookie associated to this request.
source§

const IS_VOID: bool = false

false if the request returns a reply, true otherwise.
source§

impl<'a> RequestWithReply for QueryTextExtents<'a>

§

type Reply = QueryTextExtentsReply

Reply associated with the request
§

type Cookie = QueryTextExtentsCookie

Default cookie type for the request, as returned by Connection::send_request.
§

type CookieUnchecked = QueryTextExtentsCookieUnchecked

Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.

Auto Trait Implementations§

§

impl<'a> Freeze for QueryTextExtents<'a>

§

impl<'a> RefUnwindSafe for QueryTextExtents<'a>

§

impl<'a> Send for QueryTextExtents<'a>

§

impl<'a> Sync for QueryTextExtents<'a>

§

impl<'a> Unpin for QueryTextExtents<'a>

§

impl<'a> UnwindSafe for QueryTextExtents<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.