Skip to main content

NepaliDate

Struct NepaliDate 

Source
pub struct NepaliDate {
    pub year: i32,
    pub month: u8,
    pub day: u8,
}

Fields§

§year: i32§month: u8§day: u8

Implementations§

Source§

impl NepaliDate

Source

pub fn new(year: i32, month: u8, day: u8) -> Result<Self>

Creates a new Nepali date

Source

pub fn days_in_month(year: i32, month: u8) -> Result<u8>

Returns the number of days in a given month

Source

pub fn to_gregorian(&self) -> Result<(i32, u8, u8)>

Converts Nepali date to Gregorian date (year, month, day)

Source

pub fn from_gregorian(year: i32, month: u8, day: u8) -> Result<Self>

Creates a Nepali date from a Gregorian date

Source

pub fn to_ordinal(&self) -> i32

Returns the ordinal representation of the date (days since 1975-01-01 BS) 1975-01-01 BS is ordinal 1.

Source

pub fn from_ordinal(ordinal: i32) -> Result<Self>

Creates a NepaliDate from an ordinal (days since 1975-01-01 BS)

Source

pub fn today() -> Result<Self>

Returns today’s date in Nepali calendar

Source

pub fn fiscal_year(&self) -> String

Returns the Nepali Fiscal Year for the date. In Nepal, the fiscal year starts on Shrawan 1. Returns a string like “2080/81”

Source

pub fn fiscal_quarter(&self) -> u8

Returns the fiscal quarter (1-4) Q1: Shrawan, Bhadra, Ashwin Q2: Kartik, Mangsir, Poush Q3: Magh, Falgun, Chaitra Q4: Baisakh, Jestha, Ashadh

Source

pub fn format(&self, format_str: &str) -> String

Formats the date as a string

Source

pub fn add_days(&self, days: i32) -> Result<Self>

Adds days to the date

Source§

impl NepaliDate

Source

pub fn format_date(&self, format_str: &str) -> String

Formats the date using a format string

§Format Specifiers:
  • %Y - Four-digit year (e.g., 2077)
  • %y - Two-digit year (e.g., 77)
  • %m - Month as zero-padded decimal (01-12)
  • %B - Full month name in English (e.g., Baisakh)
  • %b - Abbreviated month name (first 3 letters)
  • %d - Day as zero-padded decimal (01-31)
  • %e - Day as space-padded decimal ( 1-31)
  • %A - Full weekday name (requires conversion to Gregorian)
  • %K - Devanagari year (e.g., २०७७)
  • %n - Devanagari month (e.g., ०५)
  • %D - Devanagari day (e.g., १९)
  • %N - Devanagari month name (e.g., भाद्र)
  • %G - Devanagari weekday name (e.g., शुक्रवार)
  • %% - Literal % character
§Examples:
let date = NepaliDate::new(2077, 5, 19).unwrap();
assert_eq!(date.format_date("%Y-%m-%d"), "2077-05-19");
assert_eq!(date.format_date("%d %B %Y"), "19 Bhadra 2077");
Source

pub fn format_unicode(&self) -> String

Formats the date in Unicode Devanagari script

§Example:
let date = NepaliDate::new(2077, 1, 1).unwrap();
println!("{}", date.format_unicode()); // "१ बैशाख २०७७"
Source

pub fn month_calendar(&self) -> String

Generates a visual calendar string for the month of this date

Source§

impl NepaliDate

Source

pub fn parse(input: &str, format: &str) -> Result<Self>

Parses a date string into a NepaliDate using a format string

§Format Specifiers:
  • %Y - Four-digit year (e.g., 2077)
  • %m - Month as decimal (01-12)
  • %d - Day as decimal (01-32)
  • %B - Full month name in English (e.g., Bhadra)
  • %b - Abbreviated month name (first 3 letters)
§Examples:
let date = NepaliDate::parse("2077-05-19", "%Y-%m-%d").unwrap();
assert_eq!(date.year, 2077);
assert_eq!(date.month, 5);
assert_eq!(date.day, 19);

Trait Implementations§

Source§

impl Clone for NepaliDate

Source§

fn clone(&self) -> NepaliDate

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NepaliDate

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for NepaliDate

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Ord for NepaliDate

Source§

fn cmp(&self, other: &NepaliDate) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for NepaliDate

Source§

fn eq(&self, other: &NepaliDate) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for NepaliDate

Source§

fn partial_cmp(&self, other: &NepaliDate) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for NepaliDate

Source§

impl Eq for NepaliDate

Source§

impl StructuralPartialEq for NepaliDate

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.