pub enum DocSubscriptionLevel {
Default,
Ignore,
Every,
NoEmail,
}
Available on crate features
sync_routes
and dbx_paper
only.Expand description
The subscription level of a Paper doc.
Variants§
Default
No change email messages unless you’re the creator.
Ignore
Ignored: Not shown in pad lists or activity and no email message is sent.
Every
Subscribed: Shown in pad lists and activity and change email messages are sent.
NoEmail
Unsubscribed: Shown in pad lists, but not in activity and no change email messages are sent.
Trait Implementations§
Source§impl Clone for DocSubscriptionLevel
impl Clone for DocSubscriptionLevel
Source§fn clone(&self) -> DocSubscriptionLevel
fn clone(&self) -> DocSubscriptionLevel
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 DocSubscriptionLevel
impl Debug for DocSubscriptionLevel
Source§impl<'de> Deserialize<'de> for DocSubscriptionLevel
impl<'de> Deserialize<'de> for DocSubscriptionLevel
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 DocSubscriptionLevel
impl PartialEq for DocSubscriptionLevel
Source§impl Serialize for DocSubscriptionLevel
impl Serialize for DocSubscriptionLevel
impl Eq for DocSubscriptionLevel
impl StructuralPartialEq for DocSubscriptionLevel
Auto Trait Implementations§
impl Freeze for DocSubscriptionLevel
impl RefUnwindSafe for DocSubscriptionLevel
impl Send for DocSubscriptionLevel
impl Sync for DocSubscriptionLevel
impl Unpin for DocSubscriptionLevel
impl UnwindSafe for DocSubscriptionLevel
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.