Struct rss::TextInput [] [src]

pub struct TextInput {
    pub title: String,
    pub description: String,
    pub name: String,
    pub link: String,
}

A representation of the <textInput> element.

Fields

title: String

The label of the Submit button for the text input.

description: String

A description of the text input.

name: String

The name of the text object.

link: String

The URL of the CGI script that processes the text input request.

Trait Implementations

impl PartialEq for TextInput
[src]

fn eq(&self, __arg_0: &TextInput) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &TextInput) -> bool

This method tests for !=.

impl Clone for TextInput
[src]

fn clone(&self) -> TextInput

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Default for TextInput
[src]

fn default() -> TextInput

Returns the "default value" for a type. Read more

impl Debug for TextInput
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.