pub struct LoginParams {
pub css: Css,
pub add_css: Css,
pub line_css: Css,
pub line_add_css: Css,
pub input_css: Css,
pub submit_css: Css,
pub submit_add_css: Css,
pub error_message: Rc<dyn Fn(String) -> String>,
pub username_label: String,
pub password_label: String,
pub button_label: String,
pub waiting_label: String,
}Fields§
§css: Css§add_css: Css§line_css: Css§line_add_css: Css§input_css: Css§submit_css: Css§submit_add_css: Css§error_message: Rc<dyn Fn(String) -> String>§username_label: String§password_label: String§waiting_label: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LoginParams
impl !RefUnwindSafe for LoginParams
impl !Send for LoginParams
impl !Sync for LoginParams
impl Unpin for LoginParams
impl !UnwindSafe for LoginParams
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more