pub struct Root<'a> {
pub username: &'a str,
pub password: &'a str,
}
Expand description
Credentials for the root user
Fields§
§username: &'a str
The username of the root user
password: &'a str
The password of the root user
Trait Implementations§
impl<'a> Copy for Root<'a>
impl Credentials<Signin, Jwt> for Root<'_>
Auto Trait Implementations§
impl<'a> Freeze for Root<'a>
impl<'a> RefUnwindSafe for Root<'a>
impl<'a> Send for Root<'a>
impl<'a> Sync for Root<'a>
impl<'a> Unpin for Root<'a>
impl<'a> UnwindSafe for Root<'a>
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