pub enum LogRequest {
SetLogPackets {
enabled: bool,
responder: LogSetLogPacketsResponder,
},
}
Variants§
SetLogPackets
Dynamically set packet logging.
Implementations§
Source§impl LogRequest
impl LogRequest
pub fn into_set_log_packets(self) -> Option<(bool, LogSetLogPacketsResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogRequest
impl !RefUnwindSafe for LogRequest
impl Send for LogRequest
impl Sync for LogRequest
impl Unpin for LogRequest
impl !UnwindSafe for LogRequest
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