pub struct UserPendingChanges {
pub console_access: Option<bool>,
pub groups: Option<Vec<String>>,
pub pending_change: Option<String>,
}
Expand description
Returns information about the status of the changes pending for the ActiveMQ user.
Fields§
§console_access: Option<bool>
Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
groups: Option<Vec<String>>
The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
pending_change: Option<String>
Required. The type of change pending for the ActiveMQ user.
Trait Implementations§
Source§impl Clone for UserPendingChanges
impl Clone for UserPendingChanges
Source§fn clone(&self) -> UserPendingChanges
fn clone(&self) -> UserPendingChanges
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 UserPendingChanges
impl Debug for UserPendingChanges
Source§impl Default for UserPendingChanges
impl Default for UserPendingChanges
Source§fn default() -> UserPendingChanges
fn default() -> UserPendingChanges
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserPendingChanges
impl<'de> Deserialize<'de> for UserPendingChanges
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 UserPendingChanges
impl PartialEq for UserPendingChanges
impl StructuralPartialEq for UserPendingChanges
Auto Trait Implementations§
impl Freeze for UserPendingChanges
impl RefUnwindSafe for UserPendingChanges
impl Send for UserPendingChanges
impl Sync for UserPendingChanges
impl Unpin for UserPendingChanges
impl UnwindSafe for UserPendingChanges
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