#[non_exhaustive]pub struct AzEl {
pub start: OffsetDateTime,
pub end: OffsetDateTime,
pub location: Location,
pub directions: Vec<Direction>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.start: OffsetDateTime§end: OffsetDateTime§location: Location§directions: Vec<Direction>Trait Implementations§
impl StructuralPartialEq for AzEl
Auto Trait Implementations§
impl Freeze for AzEl
impl RefUnwindSafe for AzEl
impl Send for AzEl
impl Sync for AzEl
impl Unpin for AzEl
impl UnwindSafe for AzEl
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