pub struct SetLoggingLevelParams {
pub level: LoggingLevel,
pub meta: Option<HashMap<String, Value>>,
}
Expand description
Parameters for logging level set request
Fields§
§level: LoggingLevel
Logging level to set
meta: Option<HashMap<String, Value>>
Request metadata
Trait Implementations§
Source§impl Clone for SetLoggingLevelParams
impl Clone for SetLoggingLevelParams
Source§fn clone(&self) -> SetLoggingLevelParams
fn clone(&self) -> SetLoggingLevelParams
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 SetLoggingLevelParams
impl Debug for SetLoggingLevelParams
Source§impl<'de> Deserialize<'de> for SetLoggingLevelParams
impl<'de> Deserialize<'de> for SetLoggingLevelParams
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 SetLoggingLevelParams
impl PartialEq for SetLoggingLevelParams
Source§impl Serialize for SetLoggingLevelParams
impl Serialize for SetLoggingLevelParams
impl StructuralPartialEq for SetLoggingLevelParams
Auto Trait Implementations§
impl Freeze for SetLoggingLevelParams
impl RefUnwindSafe for SetLoggingLevelParams
impl Send for SetLoggingLevelParams
impl Sync for SetLoggingLevelParams
impl Unpin for SetLoggingLevelParams
impl UnwindSafe for SetLoggingLevelParams
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