pub struct LoggingResponse {
pub category: bool,
}Expand description
Response for the Logging RPC method
keys are the logging categories, and values indicates its status
Fields§
§category: boolif being debug logged or not. false:inactive, true:active
Trait Implementations§
Source§impl Clone for LoggingResponse
impl Clone for LoggingResponse
Source§fn clone(&self) -> LoggingResponse
fn clone(&self) -> LoggingResponse
Returns a duplicate 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 Debug for LoggingResponse
impl Debug for LoggingResponse
Source§impl<'de> Deserialize<'de> for LoggingResponse
impl<'de> Deserialize<'de> for LoggingResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LoggingResponse
impl PartialEq for LoggingResponse
Source§impl Serialize for LoggingResponse
impl Serialize for LoggingResponse
impl StructuralPartialEq for LoggingResponse
Auto Trait Implementations§
impl Freeze for LoggingResponse
impl RefUnwindSafe for LoggingResponse
impl Send for LoggingResponse
impl Sync for LoggingResponse
impl Unpin for LoggingResponse
impl UnwindSafe for LoggingResponse
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