pub struct Logs {
pub audit: Option<bool>,
pub general: Option<bool>,
}
Expand description
The list of information about logs to be enabled for the specified broker.
Fields§
§audit: Option<bool>
Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
general: Option<bool>
Enables general logging.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Logs
impl<'de> Deserialize<'de> for Logs
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
impl StructuralPartialEq for Logs
Auto Trait Implementations§
impl Freeze for Logs
impl RefUnwindSafe for Logs
impl Send for Logs
impl Sync for Logs
impl Unpin for Logs
impl UnwindSafe for Logs
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