pub struct PendingLogs {
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 Clone for PendingLogs
impl Clone for PendingLogs
Source§fn clone(&self) -> PendingLogs
fn clone(&self) -> PendingLogs
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 PendingLogs
impl Debug for PendingLogs
Source§impl Default for PendingLogs
impl Default for PendingLogs
Source§fn default() -> PendingLogs
fn default() -> PendingLogs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingLogs
impl<'de> Deserialize<'de> for PendingLogs
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 PendingLogs
impl PartialEq for PendingLogs
impl StructuralPartialEq for PendingLogs
Auto Trait Implementations§
impl Freeze for PendingLogs
impl RefUnwindSafe for PendingLogs
impl Send for PendingLogs
impl Sync for PendingLogs
impl Unpin for PendingLogs
impl UnwindSafe for PendingLogs
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