pub struct AiracCycle {
pub code: String,
pub effective_date: NaiveDate,
}Expand description
An AIRAC cycle representing a 28-day aeronautical information publication cycle.
AIRAC cycles are standardized worldwide and used to publish navigation data, airport information, and procedures.
§Fields
code- 4-character AIRAC code in format “YYCC” (e.g., “2508” for 2025 Cycle 08)effective_date- The date when this cycle becomes effective
Fields§
§code: String§effective_date: NaiveDateTrait Implementations§
Source§impl Clone for AiracCycle
impl Clone for AiracCycle
Source§fn clone(&self) -> AiracCycle
fn clone(&self) -> AiracCycle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AiracCycle
impl RefUnwindSafe for AiracCycle
impl Send for AiracCycle
impl Sync for AiracCycle
impl Unpin for AiracCycle
impl UnsafeUnpin for AiracCycle
impl UnwindSafe for AiracCycle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more