Struct dropbox_sdk::sharing::LinkSettings  
source · #[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 feature 
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 copy 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§fn eq(&self, other: &LinkSettings) -> bool
 
fn eq(&self, other: &LinkSettings) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for LinkSettings
 
impl Serialize for LinkSettings
impl Eq for LinkSettings
impl StructuralEq for LinkSettings
impl StructuralPartialEq for LinkSettings
Auto Trait Implementations§
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