pub struct BigString(pub String);
Expand description
A minimal string wrapper that creates a textarea form input.
Tuple Fields§
§0: String
Trait Implementations§
Source§impl<C> FormWith<C> for BigString
impl<C> FormWith<C> for BigString
fn new_form_with_( _context: &C, field: &str, from: Option<&Self>, _depth: usize, ) -> (FormElements, Box<dyn FormState<Self>>)
Source§fn new_form_with(
context: &C,
field: &str,
from: Option<&Self>,
) -> (FormElements, Box<dyn FormState<Self>>)
fn new_form_with( context: &C, field: &str, from: Option<&Self>, ) -> (FormElements, Box<dyn FormState<Self>>)
Generates a form state manager to produce form elements and parse the entered
values. Read more
Auto Trait Implementations§
impl Freeze for BigString
impl RefUnwindSafe for BigString
impl Send for BigString
impl Sync for BigString
impl Unpin for BigString
impl UnwindSafe for BigString
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