pub struct CredentialsBootstrap {
pub username: String,
pub password: String,
}
Expand description
Credentials bootstrap configuration
Fields§
§username: String
Admin username for cluster management
password: String
Admin password for authentication
Trait Implementations§
Source§impl Clone for CredentialsBootstrap
impl Clone for CredentialsBootstrap
Source§fn clone(&self) -> CredentialsBootstrap
fn clone(&self) -> CredentialsBootstrap
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 CredentialsBootstrap
impl Debug for CredentialsBootstrap
Source§impl<'de> Deserialize<'de> for CredentialsBootstrap
impl<'de> Deserialize<'de> for CredentialsBootstrap
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
Auto Trait Implementations§
impl Freeze for CredentialsBootstrap
impl RefUnwindSafe for CredentialsBootstrap
impl Send for CredentialsBootstrap
impl Sync for CredentialsBootstrap
impl Unpin for CredentialsBootstrap
impl UnwindSafe for CredentialsBootstrap
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