pub struct SetDebuggingFlags<'a> {
pub affect_flags: u32,
pub flags: u32,
pub affect_ctrls: u32,
pub ctrls: u32,
pub message: &'a [String8],
}Expand description
The SetDebuggingFlags request.
This request replies SetDebuggingFlagsReply.
Associated cookie types are SetDebuggingFlagsCookie and SetDebuggingFlagsCookieUnchecked.
Fields§
§affect_flags: u32§flags: u32§affect_ctrls: u32§ctrls: u32§message: &'a [String8]Trait Implementations§
Source§impl<'a> Clone for SetDebuggingFlags<'a>
impl<'a> Clone for SetDebuggingFlags<'a>
Source§fn clone(&self) -> SetDebuggingFlags<'a>
fn clone(&self) -> SetDebuggingFlags<'a>
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<'a> Debug for SetDebuggingFlags<'a>
impl<'a> Debug for SetDebuggingFlags<'a>
Source§impl<'a> RawRequest for SetDebuggingFlags<'a>
impl<'a> RawRequest for SetDebuggingFlags<'a>
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
Source§impl<'a> Request for SetDebuggingFlags<'a>
impl<'a> Request for SetDebuggingFlags<'a>
Source§impl<'a> RequestWithReply for SetDebuggingFlags<'a>
impl<'a> RequestWithReply for SetDebuggingFlags<'a>
Source§type Reply = SetDebuggingFlagsReply
type Reply = SetDebuggingFlagsReply
Reply associated with the request
Source§type Cookie = SetDebuggingFlagsCookie
type Cookie = SetDebuggingFlagsCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = SetDebuggingFlagsCookieUnchecked
type CookieUnchecked = SetDebuggingFlagsCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for SetDebuggingFlags<'a>
impl<'a> RefUnwindSafe for SetDebuggingFlags<'a>
impl<'a> Send for SetDebuggingFlags<'a>
impl<'a> Sync for SetDebuggingFlags<'a>
impl<'a> Unpin for SetDebuggingFlags<'a>
impl<'a> UnwindSafe for SetDebuggingFlags<'a>
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