pub struct DialogFieldSchema {
pub id: String,
pub label: String,
pub field_type: String,
pub required: bool,
pub placeholder: Option<String>,
pub validation: Vec<String>,
}Fields§
§id: String§label: String§field_type: String§required: bool§placeholder: Option<String>§validation: Vec<String>Trait Implementations§
Source§impl Debug for DialogFieldSchema
impl Debug for DialogFieldSchema
Auto Trait Implementations§
impl Freeze for DialogFieldSchema
impl RefUnwindSafe for DialogFieldSchema
impl Send for DialogFieldSchema
impl Sync for DialogFieldSchema
impl Unpin for DialogFieldSchema
impl UnsafeUnpin for DialogFieldSchema
impl UnwindSafe for DialogFieldSchema
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