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
sourceimpl 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
sourceimpl Clone for LinkSettings
impl Clone for LinkSettings
sourcefn clone(&self) -> LinkSettings
fn clone(&self) -> LinkSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LinkSettings
impl Debug for LinkSettings
sourceimpl Default for LinkSettings
impl Default for LinkSettings
sourcefn default() -> LinkSettings
fn default() -> LinkSettings
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for LinkSettings
impl<'de> Deserialize<'de> for LinkSettings
sourcefn 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
sourceimpl PartialEq<LinkSettings> for LinkSettings
impl PartialEq<LinkSettings> for LinkSettings
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &LinkSettings) -> bool
fn ne(&self, other: &LinkSettings) -> bool
This method tests for !=.
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more