pub struct DialogSchema {
pub id: String,
pub title: String,
pub fields: Vec<DialogFieldSchema>,
pub primary_action: String,
}Fields§
§id: String§title: String§fields: Vec<DialogFieldSchema>§primary_action: StringTrait Implementations§
Source§impl Debug for DialogSchema
impl Debug for DialogSchema
Auto Trait Implementations§
impl Freeze for DialogSchema
impl RefUnwindSafe for DialogSchema
impl Send for DialogSchema
impl Sync for DialogSchema
impl Unpin for DialogSchema
impl UnsafeUnpin for DialogSchema
impl UnwindSafe for DialogSchema
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