daysbetweendates::date

Struct Date

Source
pub struct Date {
    pub year: usize,
    pub month: usize,
    pub day: usize,
    pub leak: bool,
}
Expand description

Date type struct takes 4 argumant year, month, day and leak

use daysbetweendates::date::Date;

Fields§

§year: usize§month: usize§day: usize§leak: bool

Implementations§

Source§

impl Date

Date have 5 function Date::now, Date::from, Date.next_day, Date.next_month, Date.next_year

Source

pub fn from(date: [usize; 3]) -> Self

Date::from takes a array dd,mm,yyyy and returns a Date

§Exemple
use daysbetweendates::date::Date;
let date = Date::from([1,1,1999]);
println!("{}/{}/{}",date.day, date.month, date.year);
Source

pub fn next_day(self) -> Self

This function takes Date and add 1 of the day and retruns Date

§Exemple
use daysbetweendates::date::Date;
let mut date = Date::from([1,1,1999]);
println!("{}/{}/{}",date.day, date.month, date.year);
date = date.next_day();
println!("{}/{}/{}",date.day, date.month, date.year);
Source

pub fn next_month(self) -> Self

This function takes Date, makes day 1, add 1 to month and return Date

§Exemple
use daysbetweendates::date::Date;
let mut date = Date::from([1,1,1999]);
println!("{}/{}/{}",date.day, date.month, date.year);
date = date.next_month();
println!("{}/{}/{}",date.day, date.month, date.year);
Source

pub fn next_year(self) -> Self

This function takes Date, makes day, month 1, add 1 to year and return Date

§Exemple
use daysbetweendates::date::Date;
let mut date = Date::from([1,1,1999]);
println!("{}/{}/{}",date.day, date.month, date.year);
date = date.next_year();
println!("{}/{}/{}",date.day, date.month, date.year);

Auto Trait Implementations§

§

impl Freeze for Date

§

impl RefUnwindSafe for Date

§

impl Send for Date

§

impl Sync for Date

§

impl Unpin for Date

§

impl UnwindSafe for Date

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> 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, 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.