pub struct TextBuffers<'a> {Show 14 fields
pub board_name: TextBox<'a>,
pub board_description: TextBox<'a>,
pub card_name: TextBox<'a>,
pub card_description: TextBox<'a>,
pub card_tags: Vec<TextBox<'a>>,
pub card_comments: Vec<TextBox<'a>>,
pub email_id: TextBox<'a>,
pub password: TextBox<'a>,
pub confirm_password: TextBox<'a>,
pub reset_password_link: TextBox<'a>,
pub general_config: TextBox<'a>,
pub command_palette: TextBox<'a>,
pub theme_editor_fg_hex: TextBox<'a>,
pub theme_editor_bg_hex: TextBox<'a>,
}Fields§
§board_name: TextBox<'a>§board_description: TextBox<'a>§card_name: TextBox<'a>§card_description: TextBox<'a>§card_comments: Vec<TextBox<'a>>§email_id: TextBox<'a>§password: TextBox<'a>§confirm_password: TextBox<'a>§reset_password_link: TextBox<'a>§general_config: TextBox<'a>§command_palette: TextBox<'a>§theme_editor_fg_hex: TextBox<'a>§theme_editor_bg_hex: TextBox<'a>Implementations§
Source§impl<'a> TextBuffers<'a>
impl<'a> TextBuffers<'a>
Trait Implementations§
Source§impl<'a> Clone for TextBuffers<'a>
impl<'a> Clone for TextBuffers<'a>
Source§fn clone(&self) -> TextBuffers<'a>
fn clone(&self) -> TextBuffers<'a>
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<'a> Debug for TextBuffers<'a>
impl<'a> Debug for TextBuffers<'a>
Auto Trait Implementations§
impl<'a> !Freeze for TextBuffers<'a>
impl<'a> RefUnwindSafe for TextBuffers<'a>
impl<'a> Send for TextBuffers<'a>
impl<'a> Sync for TextBuffers<'a>
impl<'a> Unpin for TextBuffers<'a>
impl<'a> UnwindSafe for TextBuffers<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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