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>,
}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
Available on crate feature
dbx_sharing only.pub fn with_audience(self, value: LinkAudience) -> Self
Available on crate feature
dbx_sharing only.pub fn with_expiry(self, value: LinkExpiry) -> Self
Available on crate feature
dbx_sharing only.pub fn with_password(self, value: LinkPassword) -> Self
Available on crate feature
dbx_sharing only.Trait Implementations§
source§impl Clone for LinkSettings
Available on crate feature dbx_sharing only.
impl Clone for LinkSettings
Available on crate feature
dbx_sharing only.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
Available on crate feature dbx_sharing only.
impl Debug for LinkSettings
Available on crate feature
dbx_sharing only.source§impl Default for LinkSettings
Available on crate feature dbx_sharing only.
impl Default for LinkSettings
Available on crate feature
dbx_sharing only.source§fn default() -> LinkSettings
fn default() -> LinkSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LinkSettings
Available on crate feature dbx_sharing only.
impl<'de> Deserialize<'de> for LinkSettings
Available on crate feature
dbx_sharing only.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
Available on crate feature dbx_sharing only.
impl PartialEq for LinkSettings
Available on crate feature
dbx_sharing only.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
Available on crate feature dbx_sharing only.
impl Serialize for LinkSettings
Available on crate feature
dbx_sharing only.impl Eq for LinkSettings
Available on crate feature
dbx_sharing only.impl StructuralEq for LinkSettings
Available on crate feature
dbx_sharing only.impl StructuralPartialEq for LinkSettings
Available on crate feature
dbx_sharing only.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