Struct OpenFontRequest
pub struct OpenFontRequest<'input> {
pub fid: u32,
pub name: Cow<'input, [u8]>,
}
Expand description
opens a font.
Opens any X core font matching the given name
(for example “-misc-fixed-*”).
Note that X core fonts are deprecated (but still supported) in favor of client-side rendering using Xft.
§Fields
fid
- The ID with which you will refer to the font, created byxcb_generate_id
.name
- A pattern describing an X core font.
§Errors
Name
- No font matches the givenname
.
§See
xcb_generate_id
: function
Fields§
§fid: u32
§name: Cow<'input, [u8]>
Implementations§
§impl<'input> OpenFontRequest<'input>
impl<'input> OpenFontRequest<'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) -> OpenFontRequest<'static>
pub fn into_owned(self) -> OpenFontRequest<'static>
Clone all borrowed data in this OpenFontRequest.
Trait Implementations§
§impl<'input> Clone for OpenFontRequest<'input>
impl<'input> Clone for OpenFontRequest<'input>
§fn clone(&self) -> OpenFontRequest<'input>
fn clone(&self) -> OpenFontRequest<'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 OpenFontRequest<'_>
impl Debug for OpenFontRequest<'_>
§impl<'input> Default for OpenFontRequest<'input>
impl<'input> Default for OpenFontRequest<'input>
§fn default() -> OpenFontRequest<'input>
fn default() -> OpenFontRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> Request for OpenFontRequest<'input>
impl<'input> Request for OpenFontRequest<'input>
impl<'input> VoidRequest for OpenFontRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for OpenFontRequest<'input>
impl<'input> RefUnwindSafe for OpenFontRequest<'input>
impl<'input> Send for OpenFontRequest<'input>
impl<'input> Sync for OpenFontRequest<'input>
impl<'input> Unpin for OpenFontRequest<'input>
impl<'input> UnwindSafe for OpenFontRequest<'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
)