Skip to main content

Config

Struct Config 

Source
pub struct Config {
    pub year: i32,
    pub month: u32,
    pub day: u32,
    pub city: String,
    pub country: String,
    pub get_type: GetType,
}

Fields§

§year: i32§month: u32§day: u32§city: String§country: String§get_type: GetType

Implementations§

Source§

impl Config

Source

pub fn new( year: i32, month: u32, day: u32, city: String, country: String, get_type: GetType, ) -> Config

Examples found in repository?
examples/main.rs (lines 11-18)
9fn main() {
10    let today = chrono::Local::now();
11    let config = Config::new(
12        today.year(),
13        today.month(),
14        today.day(),
15        "mecca".to_string(),
16        "SAU".to_string(),
17        neda_lib::core::config::GetType::Month,
18    );
19    let aladhan = AladhanProvider::new(config.clone());
20    let prayers_times = aladhan.get_prayers_times(&config).unwrap();
21    // println!("prayers_times is: {:#?}", prayers_times);
22
23    let db = PrayersTimesDB::new("lib/local.db".to_string());
24    match db {
25        Ok(mut db) => {
26            match db.push(&prayers_times) {
27                Ok(_) => {
28                    println!("ignore pushing to the db");
29                }
30                _ => {
31                    println!("pushing to the db");
32                }
33            };
34
35            let day_salawat = db.get_day_times(&prayers_times.from).unwrap();
36            let fjer = db.get_prayer_time(Prayers::Fajr, &prayers_times.from);
37            println!("fjer is: {:#?}", fjer);
38            println!("day salawat is: {:#?}", day_salawat);
39            // let's run the adhan now
40            let adhan = Adhan::new("lib/examples/audio/اذان-احمد-النفيس.mp3".to_string());
41            adhan.play();
42        }
43        Err(e) => {
44            println!("Error: {:#?}", e);
45        }
46    }
47}
Source

pub fn clone(&self) -> Config

Examples found in repository?
examples/main.rs (line 19)
9fn main() {
10    let today = chrono::Local::now();
11    let config = Config::new(
12        today.year(),
13        today.month(),
14        today.day(),
15        "mecca".to_string(),
16        "SAU".to_string(),
17        neda_lib::core::config::GetType::Month,
18    );
19    let aladhan = AladhanProvider::new(config.clone());
20    let prayers_times = aladhan.get_prayers_times(&config).unwrap();
21    // println!("prayers_times is: {:#?}", prayers_times);
22
23    let db = PrayersTimesDB::new("lib/local.db".to_string());
24    match db {
25        Ok(mut db) => {
26            match db.push(&prayers_times) {
27                Ok(_) => {
28                    println!("ignore pushing to the db");
29                }
30                _ => {
31                    println!("pushing to the db");
32                }
33            };
34
35            let day_salawat = db.get_day_times(&prayers_times.from).unwrap();
36            let fjer = db.get_prayer_time(Prayers::Fajr, &prayers_times.from);
37            println!("fjer is: {:#?}", fjer);
38            println!("day salawat is: {:#?}", day_salawat);
39            // let's run the adhan now
40            let adhan = Adhan::new("lib/examples/audio/اذان-احمد-النفيس.mp3".to_string());
41            adhan.play();
42        }
43        Err(e) => {
44            println!("Error: {:#?}", e);
45        }
46    }
47}

Trait Implementations§

Source§

impl Default for Config

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<S> FromSample<S> for S

Source§

fn from_sample_(s: S) -> S

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<F, T> IntoSample<T> for F
where T: FromSample<F>,

Source§

fn into_sample(self) -> T

Source§

impl<T> MaybeSendSync for T

Source§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

Source§

fn to_sample_(self) -> U

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more