[][src]Struct dropbox_sdk::sharing::CreateSharedLinkWithSettingsArg

pub struct CreateSharedLinkWithSettingsArg {
    pub path: ReadPath,
    pub settings: Option<SharedLinkSettings>,
}
This is supported on crate feature dbx_sharing only.

Fields

path: ReadPath

The path to be shared by the shared link.

settings: Option<SharedLinkSettings>

The requested settings for the newly created shared link.

Implementations

impl CreateSharedLinkWithSettingsArg[src]

pub fn new(path: ReadPath) -> Self[src]

pub fn with_settings(self, value: Option<SharedLinkSettings>) -> Self[src]

Trait Implementations

impl Debug for CreateSharedLinkWithSettingsArg[src]

impl<'de> Deserialize<'de> for CreateSharedLinkWithSettingsArg[src]

impl Serialize for CreateSharedLinkWithSettingsArg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.