#[non_exhaustive]pub enum Activity {
Marriage,
Building,
Travel,
Business,
Agriculture,
ReligiousCeremony,
Naming,
MovingHouse,
Education,
Medical,
Custom(String),
}Expand description
Activities that can be evaluated for auspiciousness
These represent common activities in Indonesian culture that may be scheduled based on calendar auspiciousness.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Marriage
Marriage ceremonies
Building
Building construction
Travel
Travel or journeys
Business
Business ventures
Agriculture
Agricultural activities
ReligiousCeremony
Religious ceremonies
Naming
Naming ceremonies
MovingHouse
Moving to new house
Education
Starting education
Medical
Medical treatments
Custom(String)
Custom activity with description
Implementations§
Trait Implementations§
impl Eq for Activity
impl StructuralPartialEq for Activity
Auto Trait Implementations§
impl Freeze for Activity
impl RefUnwindSafe for Activity
impl Send for Activity
impl Sync for Activity
impl Unpin for Activity
impl UnsafeUnpin for Activity
impl UnwindSafe for Activity
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