Struct x11rb_protocol::protocol::xproto::ListFontsRequest
source · pub struct ListFontsRequest<'input> {
pub max_names: u16,
pub pattern: Cow<'input, [u8]>,
}
Expand description
get matching font names.
Gets a list of available font names which match the given pattern
.
§Fields
pattern
- A font pattern, for example “-misc-fixed-*”.
The asterisk (*) is a wildcard for any number of characters. The question mark (?) is a wildcard for a single character. Use of uppercase or lowercase does not matter.
max_names
- The maximum number of fonts to be returned.
Fields§
§max_names: u16
§pattern: Cow<'input, [u8]>
Implementations§
source§impl<'input> ListFontsRequest<'input>
impl<'input> ListFontsRequest<'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) -> ListFontsRequest<'static>
pub fn into_owned(self) -> ListFontsRequest<'static>
Clone all borrowed data in this ListFontsRequest.
Trait Implementations§
source§impl<'input> Clone for ListFontsRequest<'input>
impl<'input> Clone for ListFontsRequest<'input>
source§fn clone(&self) -> ListFontsRequest<'input>
fn clone(&self) -> ListFontsRequest<'input>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'input> Debug for ListFontsRequest<'input>
impl<'input> Debug for ListFontsRequest<'input>
source§impl<'input> Default for ListFontsRequest<'input>
impl<'input> Default for ListFontsRequest<'input>
source§fn default() -> ListFontsRequest<'input>
fn default() -> ListFontsRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'de, 'input> Deserialize<'de> for ListFontsRequest<'input>
impl<'de, 'input> Deserialize<'de> for ListFontsRequest<'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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'input> Hash for ListFontsRequest<'input>
impl<'input> Hash for ListFontsRequest<'input>
source§impl<'input> Ord for ListFontsRequest<'input>
impl<'input> Ord for ListFontsRequest<'input>
source§fn cmp(&self, other: &ListFontsRequest<'input>) -> Ordering
fn cmp(&self, other: &ListFontsRequest<'input>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'input> PartialEq for ListFontsRequest<'input>
impl<'input> PartialEq for ListFontsRequest<'input>
source§fn eq(&self, other: &ListFontsRequest<'input>) -> bool
fn eq(&self, other: &ListFontsRequest<'input>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for ListFontsRequest<'input>
impl<'input> PartialOrd for ListFontsRequest<'input>
source§fn partial_cmp(&self, other: &ListFontsRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &ListFontsRequest<'input>) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl<'input> ReplyRequest for ListFontsRequest<'input>
impl<'input> ReplyRequest for ListFontsRequest<'input>
§type Reply = ListFontsReply
type Reply = ListFontsReply
The kind of reply that this request generates.
source§impl<'input> Request for ListFontsRequest<'input>
impl<'input> Request for ListFontsRequest<'input>
source§impl<'input> Serialize for ListFontsRequest<'input>
impl<'input> Serialize for ListFontsRequest<'input>
impl<'input> Eq for ListFontsRequest<'input>
impl<'input> StructuralPartialEq for ListFontsRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ListFontsRequest<'input>
impl<'input> RefUnwindSafe for ListFontsRequest<'input>
impl<'input> Send for ListFontsRequest<'input>
impl<'input> Sync for ListFontsRequest<'input>
impl<'input> Unpin for ListFontsRequest<'input>
impl<'input> UnwindSafe for ListFontsRequest<'input>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more