Enum tacview::record::GlobalProperty[][src]

pub enum GlobalProperty {
Show 13 variants DataSource(String), DataRecorder(String), ReferenceTime(String), RecordingTime(String), Author(String), Title(String), Category(String), Briefing(String), Debriefing(String), Comments(String), ReferenceLongitude(f64), ReferenceLatitude(f64), Unknown(StringString),
}

Variants

DataSource(String)

Source simulator, control station or file format.

Tuple Fields of DataSource

0: String
DataRecorder(String)

Software or hardware used to record the data.

Tuple Fields of DataRecorder

0: String
ReferenceTime(String)

Base time (UTC) for the current mission. This time is combined with each frame offset (in seconds) to get the final absolute UTC time for each data sample.

Tuple Fields of ReferenceTime

0: String
RecordingTime(String)

Recording (file) creation (UTC) time.

Tuple Fields of RecordingTime

0: String
Author(String)

Author or operator who has created this recording.

Tuple Fields of Author

0: String
Title(String)

Mission/flight title or designation.

Tuple Fields of Title

0: String
Category(String)

Category of the flight/mission.

Tuple Fields of Category

0: String
Briefing(String)

Free text containing the briefing of the flight/mission.

Tuple Fields of Briefing

0: String
Debriefing(String)

Free text containing the debriefing.

Tuple Fields of Debriefing

0: String
Comments(String)

Free comments about the flight. Do not forget to escape any end-of-line character you want to inject into the comments.

Tuple Fields of Comments

0: String
ReferenceLongitude(f64)

Used to reduce the file size by centring coordinates around a median point. This will be added to each object Longitude to get the final coordinates.

Tuple Fields of ReferenceLongitude

0: f64
ReferenceLatitude(f64)

Used to reduce the file size by centring coordinates around a median point. This will be added to each object Latitude to get the final coordinates.

Tuple Fields of ReferenceLatitude

0: f64
Unknown(StringString)

Unknown property. This only exists for forward compatibility and using it is not recommended as the property you are using could be move to the known properties in a future release.

Tuple Fields of Unknown

0: String1: String

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. 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

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

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.