[][src]Struct ffsend_api::api::url::UrlBuilder

pub struct UrlBuilder;

A struct, that helps building URLs for communicating with a remote host.

Methods

impl UrlBuilder[src]

pub fn download(file: &RemoteFile, secret: bool) -> Url[src]

Get the download URL of the given file. This URL is identical to the share URL, a term used in this API. Set secret to true, to include it in the URL if known.

pub fn api_metadata(file: &RemoteFile) -> Url[src]

Get the API metadata URL for the given file.

pub fn api_download(file: &RemoteFile) -> Url[src]

Get the API download URL for the given file.

pub fn api_password(file: &RemoteFile) -> Url[src]

Get the API password URL for the given file.

pub fn api_params(file: &RemoteFile) -> Url[src]

Get the API params URL for the given file.

pub fn api_info(file: &RemoteFile) -> Url[src]

Get the API info URL for the given file.

pub fn api_exists(file: &RemoteFile) -> Url[src]

Get the API exists URL for the given file.

pub fn api_delete(file: &RemoteFile) -> Url[src]

Get the API delete URL for the given file.

Auto Trait Implementations

impl Send for UrlBuilder

impl Sync for UrlBuilder

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> Same for T

type Output = T

Should always be Self