pub enum FolderSubscriptionLevel {
None,
ActivityOnly,
DailyEmails,
WeeklyEmails,
}
Available on crate features
async_routes
and dbx_paper
only.Expand description
The subscription level of a Paper folder.
Variants§
None
Not shown in activity, no email messages.
ActivityOnly
Shown in activity, no email messages.
DailyEmails
Shown in activity, daily email messages.
WeeklyEmails
Shown in activity, weekly email messages.
Trait Implementations§
Source§impl Clone for FolderSubscriptionLevel
impl Clone for FolderSubscriptionLevel
Source§fn clone(&self) -> FolderSubscriptionLevel
fn clone(&self) -> FolderSubscriptionLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FolderSubscriptionLevel
impl Debug for FolderSubscriptionLevel
Source§impl<'de> Deserialize<'de> for FolderSubscriptionLevel
impl<'de> Deserialize<'de> for FolderSubscriptionLevel
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FolderSubscriptionLevel
impl PartialEq for FolderSubscriptionLevel
Source§impl Serialize for FolderSubscriptionLevel
impl Serialize for FolderSubscriptionLevel
impl Eq for FolderSubscriptionLevel
impl StructuralPartialEq for FolderSubscriptionLevel
Auto Trait Implementations§
impl Freeze for FolderSubscriptionLevel
impl RefUnwindSafe for FolderSubscriptionLevel
impl Send for FolderSubscriptionLevel
impl Sync for FolderSubscriptionLevel
impl Unpin for FolderSubscriptionLevel
impl UnwindSafe for FolderSubscriptionLevel
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.