pub enum SettingVariant {
Show 29 variants
PasswordStrength,
PasswordContainsNumber,
PasswordContainsSpecial,
CheckForDuplicates,
CheckForOldPasswords,
NotifySecurityByMail,
NotifySharesByMail,
NotifySecurityByNotification,
NotifySharesByNotification,
NotifyErrorsByNotification,
ServerSideEncryption,
ClientSideEncryption,
SessionLifetime,
Version,
BaseUrl,
BaseUrlWebDav,
Sharing,
Resharing,
AutoComplete,
SharingTypes,
PrimaryColor,
TextColor,
BackgroundColor,
BackgroundTheme,
Logo,
Label,
AppIcon,
FolderIcon,
Client,
}
Expand description
Setting name
Variants§
PasswordStrength
PasswordContainsNumber
PasswordContainsSpecial
CheckForDuplicates
CheckForOldPasswords
NotifySecurityByMail
NotifySecurityByNotification
NotifyErrorsByNotification
ServerSideEncryption
ClientSideEncryption
SessionLifetime
Version
BaseUrl
BaseUrlWebDav
Sharing
Resharing
AutoComplete
SharingTypes
PrimaryColor
TextColor
BackgroundColor
BackgroundTheme
Logo
Label
AppIcon
FolderIcon
Client
Trait Implementations§
Source§impl Debug for SettingVariant
impl Debug for SettingVariant
Source§impl<'de> Deserialize<'de> for SettingVariant
impl<'de> Deserialize<'de> for SettingVariant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ServerSettings> for SettingVariant
impl From<ServerSettings> for SettingVariant
Source§fn from(value: ServerSettings) -> Self
fn from(value: ServerSettings) -> Self
Converts to this type from the input type.
Source§impl From<UserSettings> for SettingVariant
impl From<UserSettings> for SettingVariant
Source§fn from(value: UserSettings) -> Self
fn from(value: UserSettings) -> Self
Converts to this type from the input type.
Source§impl FromStr for SettingVariant
impl FromStr for SettingVariant
Source§impl Hash for SettingVariant
impl Hash for SettingVariant
Source§impl PartialEq for SettingVariant
impl PartialEq for SettingVariant
Source§impl Serialize for SettingVariant
impl Serialize for SettingVariant
impl Eq for SettingVariant
impl StructuralPartialEq for SettingVariant
Auto Trait Implementations§
impl Freeze for SettingVariant
impl RefUnwindSafe for SettingVariant
impl Send for SettingVariant
impl Sync for SettingVariant
impl Unpin for SettingVariant
impl UnwindSafe for SettingVariant
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.