pub struct Text<'a, 'b, 'c, 'd, 'e, 'f> {
pub android: AndroidText<'a, 'b, 'c>,
pub apple: &'d str,
pub windows: WindowsText<'e, 'f>,
}Expand description
The text contents displayed by an authentication prompt.
Fields§
§android: AndroidText<'a, 'b, 'c>The text of the authentication prompt on Android.
apple: &'d strThe description of the authentication prompt on Apple devices.
Appears as “$(binary_name) is trying to $(description)”.
windows: WindowsText<'e, 'f>The description of the authentication prompt on Windows.
Auto Trait Implementations§
impl<'a, 'b, 'c, 'd, 'e, 'f> Freeze for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> RefUnwindSafe for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> Send for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> Sync for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> Unpin for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> UnsafeUnpin for Text<'a, 'b, 'c, 'd, 'e, 'f>
impl<'a, 'b, 'c, 'd, 'e, 'f> UnwindSafe for Text<'a, 'b, 'c, 'd, 'e, 'f>
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