pub enum Event {
    Fixed(FixedElevationEvent),
    Variable(VariableElevationEvent),
}
Expand description

Any supported solar event.

Some events, such as sunrise and sunset, occur when the Sun is at a specific altitude relative to the horizon, but other events, such as solar noon, occur not at a fixed altitude, but a variable one. Each of these has a different way of calculating the time of the event, hence they are separated into two variants.

Variants

Fixed(FixedElevationEvent)

Variable(VariableElevationEvent)

Implementations

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.