Struct ListFontsRequest
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§
§impl<'input> ListFontsRequest<'input>
impl<'input> ListFontsRequest<'input>
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
pub fn into_owned(self) -> ListFontsRequest<'static>
pub fn into_owned(self) -> ListFontsRequest<'static>
Clone all borrowed data in this ListFontsRequest.
Trait Implementations§
§impl<'input> Clone for ListFontsRequest<'input>
impl<'input> Clone for ListFontsRequest<'input>
§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 more§impl Debug for ListFontsRequest<'_>
impl Debug for ListFontsRequest<'_>
§impl<'input> Default for ListFontsRequest<'input>
impl<'input> Default for ListFontsRequest<'input>
§fn default() -> ListFontsRequest<'input>
fn default() -> ListFontsRequest<'input>
Returns the “default value” for a type. Read more
§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.
§impl<'input> Request for ListFontsRequest<'input>
impl<'input> Request 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)