#[non_exhaustive]pub struct LinkSettings {
pub access_level: Option<AccessLevel>,
pub audience: Option<LinkAudience>,
pub expiry: Option<LinkExpiry>,
pub password: Option<LinkPassword>,
}
Available on crate features
sync_routes
and dbx_sharing
only.Expand description
Settings that apply to a link.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.access_level: Option<AccessLevel>
The access level on the link for this file. Currently, it only accepts ‘viewer’ and ‘viewer_no_comment’.
audience: Option<LinkAudience>
The type of audience on the link for this file.
expiry: Option<LinkExpiry>
An expiry timestamp to set on a link.
password: Option<LinkPassword>
The password for the link.
Implementations§
Source§impl LinkSettings
impl LinkSettings
pub fn with_access_level(self, value: AccessLevel) -> Self
pub fn with_audience(self, value: LinkAudience) -> Self
pub fn with_expiry(self, value: LinkExpiry) -> Self
pub fn with_password(self, value: LinkPassword) -> Self
Trait Implementations§
Source§impl Clone for LinkSettings
impl Clone for LinkSettings
Source§fn clone(&self) -> LinkSettings
fn clone(&self) -> LinkSettings
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 LinkSettings
impl Debug for LinkSettings
Source§impl Default for LinkSettings
impl Default for LinkSettings
Source§fn default() -> LinkSettings
fn default() -> LinkSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkSettings
impl<'de> Deserialize<'de> for LinkSettings
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 LinkSettings
impl PartialEq for LinkSettings
Source§impl Serialize for LinkSettings
impl Serialize for LinkSettings
impl Eq for LinkSettings
impl StructuralPartialEq for LinkSettings
Auto Trait Implementations§
impl Freeze for LinkSettings
impl RefUnwindSafe for LinkSettings
impl Send for LinkSettings
impl Sync for LinkSettings
impl Unpin for LinkSettings
impl UnwindSafe for LinkSettings
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.