FormData

Struct FormData 

Source
pub struct FormData {
    pub sections: Vec<DataSection>,
    pub tabs: Vec<(String, Rc<Vec<DataSection>>)>,
    pub top_controls: ControlsConfig,
    pub bottom_controls: ControlsConfig,
}
Expand description

Used to define structure of a Form.

Example:

use vertigo_forms::form::{DataSection, FieldsetStyle, FormData};

#[derive(Clone, PartialEq)]
pub struct MyModel {
    pub slug: String,
    pub name: String,
    pub dimension_x: String,
    pub dimension_y: String,
}

impl From<&MyModel> for FormData {
    fn from(value: &MyModel) -> Self {
        Self::default()
            .with(DataSection::with_string_field("Slug", "slug", &value.slug))
            .with(DataSection::with_string_field("Name", "name", &value.name))
            .with(
                DataSection::with_string_field("Dimensions", "dimension_x", &value.dimension_x)
                    .add_string_field("dimension_y", &value.dimension_y)
                    .set_fieldset_style(FieldsetStyle::Dimensions),
            )
    }
}

See story book for more examples.

Fields§

§sections: Vec<DataSection>§tabs: Vec<(String, Rc<Vec<DataSection>>)>§top_controls: ControlsConfig§bottom_controls: ControlsConfig

Implementations§

Source§

impl FormData

Source

pub fn with(self, section: DataSection) -> Self

Add new data section (outside of tabs)

Source

pub fn add_tab( self, tab_label: impl Into<String>, sections: Vec<DataSection>, ) -> Self

Add new tab with sections

Source

pub fn add_top_controls(self) -> Self

Source

pub fn add_top_controls_styled(self, css: Css) -> Self

Source

pub fn add_bottom_controls(self) -> Self

Source

pub fn add_bottom_controls_styled(self, css: Css) -> Self

Source

pub fn export(&self) -> FormExport

Trait Implementations§

Source§

impl Default for FormData

Source§

fn default() -> FormData

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.