Struct x11rb_protocol::protocol::xproto::QueryTextExtentsRequest
source · pub struct QueryTextExtentsRequest<'input> {
pub font: Fontable,
pub string: Cow<'input, [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
xcb_char2b_t
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.
§Fields
font
- Thefont
to calculate text extents in. You can also pass a graphics context.string_len
- The number of characters instring
.string
- The text to get text extents for.
§Errors
GContext
- The specified graphics context does not exist.Font
- The specifiedfont
does not exist.
Fields§
§font: Fontable
§string: Cow<'input, [Char2b]>
Implementations§
source§impl<'input> QueryTextExtentsRequest<'input>
impl<'input> QueryTextExtentsRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
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) -> QueryTextExtentsRequest<'static>
pub fn into_owned(self) -> QueryTextExtentsRequest<'static>
Clone all borrowed data in this QueryTextExtentsRequest.
Trait Implementations§
source§impl<'input> Clone for QueryTextExtentsRequest<'input>
impl<'input> Clone for QueryTextExtentsRequest<'input>
source§fn clone(&self) -> QueryTextExtentsRequest<'input>
fn clone(&self) -> QueryTextExtentsRequest<'input>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'input> Debug for QueryTextExtentsRequest<'input>
impl<'input> Debug for QueryTextExtentsRequest<'input>
source§impl<'input> Default for QueryTextExtentsRequest<'input>
impl<'input> Default for QueryTextExtentsRequest<'input>
source§fn default() -> QueryTextExtentsRequest<'input>
fn default() -> QueryTextExtentsRequest<'input>
source§impl<'de, 'input> Deserialize<'de> for QueryTextExtentsRequest<'input>
impl<'de, 'input> Deserialize<'de> for QueryTextExtentsRequest<'input>
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>,
source§impl<'input> Hash for QueryTextExtentsRequest<'input>
impl<'input> Hash for QueryTextExtentsRequest<'input>
source§impl<'input> Ord for QueryTextExtentsRequest<'input>
impl<'input> Ord for QueryTextExtentsRequest<'input>
source§fn cmp(&self, other: &QueryTextExtentsRequest<'input>) -> Ordering
fn cmp(&self, other: &QueryTextExtentsRequest<'input>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl<'input> PartialEq for QueryTextExtentsRequest<'input>
impl<'input> PartialEq for QueryTextExtentsRequest<'input>
source§fn eq(&self, other: &QueryTextExtentsRequest<'input>) -> bool
fn eq(&self, other: &QueryTextExtentsRequest<'input>) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for QueryTextExtentsRequest<'input>
impl<'input> PartialOrd for QueryTextExtentsRequest<'input>
source§fn partial_cmp(
&self,
other: &QueryTextExtentsRequest<'input>
) -> Option<Ordering>
fn partial_cmp( &self, other: &QueryTextExtentsRequest<'input> ) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more