[][src]Struct firefly_iii::models::configuration_data::ConfigurationData

pub struct ConfigurationData {
    pub is_demo_site: Option<bool>,
    pub permission_update_check: Option<i32>,
    pub last_update_check: Option<String>,
    pub single_user_mode: Option<bool>,
}

Fields

is_demo_site: Option<bool>permission_update_check: Option<i32>

If the user has given permission to check for updates. - null = never asked. - -1 = never asked. - 0 = no permission. - 1 = permission

last_update_check: Option<String>single_user_mode: Option<bool>

Whether other users can register.

Methods

impl ConfigurationData[src]

Trait Implementations

impl Debug for ConfigurationData[src]

impl<'de> Deserialize<'de> for ConfigurationData[src]

impl PartialEq<ConfigurationData> for ConfigurationData[src]

impl Serialize for ConfigurationData[src]

impl StructuralPartialEq for ConfigurationData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.