pub struct BasicAuth {
pub user: Secret<String>,
pub password: Secret<String>,
}Expand description
Basic configuration which can be used to mlflow authentication.
See more here: https://mlflow.org/docs/latest/auth/index.html
Fields§
§user: Secret<String>§password: Secret<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BasicAuth
impl<'de> Deserialize<'de> for BasicAuth
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 BasicAuth
impl RefUnwindSafe for BasicAuth
impl Send for BasicAuth
impl Sync for BasicAuth
impl Unpin for BasicAuth
impl UnwindSafe for BasicAuth
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