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.

DataRecorder(String)

Software or hardware used to record the data.

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.

RecordingTime(String)

Recording (file) creation (UTC) time.

Author(String)

Author or operator who has created this recording.

Title(String)

Mission/flight title or designation.

Category(String)

Category of the flight/mission.

Briefing(String)

Free text containing the briefing of the flight/mission.

Debriefing(String)

Free text containing the debriefing.

Comments(String)

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

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.

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.

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.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

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

Returns the argument unchanged.

Calls U::from(self).

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

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.