pub struct RabbitMqUserCreateRequest {
pub name: String,
pub password: Option<String>,
pub password_hash: Option<String>,
pub hashing_algorithm: Option<RabbitMqHashingAlgorithm>,
pub tags: Vec<RabbitMqUserTag>,
}
Fields§
§name: String
§password: Option<String>
§password_hash: Option<String>
§hashing_algorithm: Option<RabbitMqHashingAlgorithm>
Trait Implementations§
Source§impl Debug for RabbitMqUserCreateRequest
impl Debug for RabbitMqUserCreateRequest
Auto Trait Implementations§
impl Freeze for RabbitMqUserCreateRequest
impl RefUnwindSafe for RabbitMqUserCreateRequest
impl Send for RabbitMqUserCreateRequest
impl Sync for RabbitMqUserCreateRequest
impl Unpin for RabbitMqUserCreateRequest
impl UnwindSafe for RabbitMqUserCreateRequest
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