[][src]Struct oration::data::FormEdit

pub struct FormEdit {
    pub comment: String,
    pub name: Option<String>,
    pub email: Option<String>,
    pub url: Option<String>,
}

Incoming data from the web based form for an edited comment.

Fields

Comment from textarea.

Optional name.

Optional email.

Optional website.

Trait Implementations

impl<'rocket> FromForm<'rocket> for FormEdit
[src]

Parses an instance of Self from the iterator of form items it. Read more

The associated error to be returned when parsing fails.

impl Debug for FormEdit
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FormEdit

impl Sync for FormEdit