pub struct SimpleTag {
    pub name: String,
    pub language: Option<Language>,
    pub default: bool,
    pub value: Option<TagValue>,
}
Expand description

General information about the target

Fields

name: String

The tag’s name

language: Option<Language>

The tag’s language

default: bool

Whether this is the default/original language to use

value: Option<TagValue>

The tag’s value

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.