pub struct ListFontsWithInfoRequest<'input> {
pub max_names: u16,
pub pattern: Cow<'input, [u8]>,
}
Expand description
get matching font names and information.
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> ListFontsWithInfoRequest<'input>
impl<'input> ListFontsWithInfoRequest<'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) -> ListFontsWithInfoRequest<'static>
pub fn into_owned(self) -> ListFontsWithInfoRequest<'static>
Clone all borrowed data in this ListFontsWithInfoRequest.
Trait Implementations§
Source§impl<'input> Clone for ListFontsWithInfoRequest<'input>
impl<'input> Clone for ListFontsWithInfoRequest<'input>
Source§fn clone(&self) -> ListFontsWithInfoRequest<'input>
fn clone(&self) -> ListFontsWithInfoRequest<'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 ListFontsWithInfoRequest<'input>
impl<'input> Debug for ListFontsWithInfoRequest<'input>
Source§impl<'input> Default for ListFontsWithInfoRequest<'input>
impl<'input> Default for ListFontsWithInfoRequest<'input>
Source§fn default() -> ListFontsWithInfoRequest<'input>
fn default() -> ListFontsWithInfoRequest<'input>
Returns the “default value” for a type. Read more
Source§impl<'de, 'input> Deserialize<'de> for ListFontsWithInfoRequest<'input>
impl<'de, 'input> Deserialize<'de> for ListFontsWithInfoRequest<'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 ListFontsWithInfoRequest<'input>
impl<'input> Hash for ListFontsWithInfoRequest<'input>
Source§impl<'input> Ord for ListFontsWithInfoRequest<'input>
impl<'input> Ord for ListFontsWithInfoRequest<'input>
Source§fn cmp(&self, other: &ListFontsWithInfoRequest<'input>) -> Ordering
fn cmp(&self, other: &ListFontsWithInfoRequest<'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 ListFontsWithInfoRequest<'input>
impl<'input> PartialEq for ListFontsWithInfoRequest<'input>
Source§fn eq(&self, other: &ListFontsWithInfoRequest<'input>) -> bool
fn eq(&self, other: &ListFontsWithInfoRequest<'input>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'input> PartialOrd for ListFontsWithInfoRequest<'input>
impl<'input> PartialOrd for ListFontsWithInfoRequest<'input>
Source§impl<'input> ReplyRequest for ListFontsWithInfoRequest<'input>
impl<'input> ReplyRequest for ListFontsWithInfoRequest<'input>
Source§type Reply = ListFontsWithInfoReply
type Reply = ListFontsWithInfoReply
The kind of reply that this request generates.
Source§impl<'input> Request for ListFontsWithInfoRequest<'input>
impl<'input> Request for ListFontsWithInfoRequest<'input>
Source§impl<'input> Serialize for ListFontsWithInfoRequest<'input>
impl<'input> Serialize for ListFontsWithInfoRequest<'input>
impl<'input> Eq for ListFontsWithInfoRequest<'input>
impl<'input> StructuralPartialEq for ListFontsWithInfoRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ListFontsWithInfoRequest<'input>
impl<'input> RefUnwindSafe for ListFontsWithInfoRequest<'input>
impl<'input> Send for ListFontsWithInfoRequest<'input>
impl<'input> Sync for ListFontsWithInfoRequest<'input>
impl<'input> Unpin for ListFontsWithInfoRequest<'input>
impl<'input> UnwindSafe for ListFontsWithInfoRequest<'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