Struct x11rb_protocol::protocol::xproto::SetFontPathRequest
source · [−]Fields
font: Cow<'input, [Str]>
Implementations
sourceimpl<'input> SetFontPathRequest<'input>
impl<'input> SetFontPathRequest<'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) -> SetFontPathRequest<'static>
pub fn into_owned(self) -> SetFontPathRequest<'static>
Clone all borrowed data in this SetFontPathRequest.
Trait Implementations
sourceimpl<'input> Clone for SetFontPathRequest<'input>
impl<'input> Clone for SetFontPathRequest<'input>
sourcefn clone(&self) -> SetFontPathRequest<'input>
fn clone(&self) -> SetFontPathRequest<'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 SetFontPathRequest<'input>
impl<'input> Debug for SetFontPathRequest<'input>
sourceimpl<'input> Default for SetFontPathRequest<'input>
impl<'input> Default for SetFontPathRequest<'input>
sourcefn default() -> SetFontPathRequest<'input>
fn default() -> SetFontPathRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for SetFontPathRequest<'input>
impl<'input> Hash for SetFontPathRequest<'input>
sourceimpl<'input> Ord for SetFontPathRequest<'input>
impl<'input> Ord for SetFontPathRequest<'input>
sourceimpl<'input> PartialEq<SetFontPathRequest<'input>> for SetFontPathRequest<'input>
impl<'input> PartialEq<SetFontPathRequest<'input>> for SetFontPathRequest<'input>
sourcefn eq(&self, other: &SetFontPathRequest<'input>) -> bool
fn eq(&self, other: &SetFontPathRequest<'input>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SetFontPathRequest<'input>) -> bool
fn ne(&self, other: &SetFontPathRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<SetFontPathRequest<'input>> for SetFontPathRequest<'input>
impl<'input> PartialOrd<SetFontPathRequest<'input>> for SetFontPathRequest<'input>
sourcefn partial_cmp(&self, other: &SetFontPathRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &SetFontPathRequest<'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> Request for SetFontPathRequest<'input>
impl<'input> Request for SetFontPathRequest<'input>
impl<'input> Eq for SetFontPathRequest<'input>
impl<'input> StructuralEq for SetFontPathRequest<'input>
impl<'input> StructuralPartialEq for SetFontPathRequest<'input>
impl<'input> VoidRequest for SetFontPathRequest<'input>
Auto Trait Implementations
impl<'input> RefUnwindSafe for SetFontPathRequest<'input>
impl<'input> Send for SetFontPathRequest<'input>
impl<'input> Sync for SetFontPathRequest<'input>
impl<'input> Unpin for SetFontPathRequest<'input>
impl<'input> UnwindSafe for SetFontPathRequest<'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