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
sourceimpl<'input> QueryTextExtentsRequest<'input>
impl<'input> QueryTextExtentsRequest<'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) -> QueryTextExtentsRequest<'static>
pub fn into_owned(self) -> QueryTextExtentsRequest<'static>
Clone all borrowed data in this QueryTextExtentsRequest.
Trait Implementations
sourceimpl<'input> Clone for QueryTextExtentsRequest<'input>
impl<'input> Clone for QueryTextExtentsRequest<'input>
sourcefn clone(&self) -> QueryTextExtentsRequest<'input>
fn clone(&self) -> QueryTextExtentsRequest<'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 QueryTextExtentsRequest<'input>
impl<'input> Debug for QueryTextExtentsRequest<'input>
sourceimpl<'input> Default for QueryTextExtentsRequest<'input>
impl<'input> Default for QueryTextExtentsRequest<'input>
sourcefn default() -> QueryTextExtentsRequest<'input>
fn default() -> QueryTextExtentsRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for QueryTextExtentsRequest<'input>
impl<'input> Hash for QueryTextExtentsRequest<'input>
sourceimpl<'input> Ord for QueryTextExtentsRequest<'input>
impl<'input> Ord for QueryTextExtentsRequest<'input>
sourceimpl<'input> PartialEq<QueryTextExtentsRequest<'input>> for QueryTextExtentsRequest<'input>
impl<'input> PartialEq<QueryTextExtentsRequest<'input>> for QueryTextExtentsRequest<'input>
sourcefn eq(&self, other: &QueryTextExtentsRequest<'input>) -> bool
fn eq(&self, other: &QueryTextExtentsRequest<'input>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &QueryTextExtentsRequest<'input>) -> bool
fn ne(&self, other: &QueryTextExtentsRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<QueryTextExtentsRequest<'input>> for QueryTextExtentsRequest<'input>
impl<'input> PartialOrd<QueryTextExtentsRequest<'input>> for QueryTextExtentsRequest<'input>
sourcefn partial_cmp(
&self,
other: &QueryTextExtentsRequest<'input>
) -> Option<Ordering>
fn partial_cmp(
&self,
other: &QueryTextExtentsRequest<'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> ReplyRequest for QueryTextExtentsRequest<'input>
impl<'input> ReplyRequest for QueryTextExtentsRequest<'input>
type Reply = QueryTextExtentsReply
type Reply = QueryTextExtentsReply
The kind of reply that this request generates.
sourceimpl<'input> Request for QueryTextExtentsRequest<'input>
impl<'input> Request for QueryTextExtentsRequest<'input>
impl<'input> Eq for QueryTextExtentsRequest<'input>
impl<'input> StructuralEq for QueryTextExtentsRequest<'input>
impl<'input> StructuralPartialEq for QueryTextExtentsRequest<'input>
Auto Trait Implementations
impl<'input> RefUnwindSafe for QueryTextExtentsRequest<'input>
impl<'input> Send for QueryTextExtentsRequest<'input>
impl<'input> Sync for QueryTextExtentsRequest<'input>
impl<'input> Unpin for QueryTextExtentsRequest<'input>
impl<'input> UnwindSafe for QueryTextExtentsRequest<'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