[][src]Struct ffsend_api::action::download::Download

pub struct Download<'a> { /* fields omitted */ }

A file download action to a Send server.

This action is compatible with both Firefox Send v2 and v3, but the server API version to use must be explicitly given due to a version specific download method.

Methods

impl<'a> Download<'a>[src]

pub fn new(
    version: Version,
    file: &'a RemoteFile,
    target: PathBuf,
    password: Option<String>,
    check_exists: bool,
    metadata_response: Option<MetadataResponse>
) -> Self
[src]

Construct a new download action for the given remote file. It is recommended to check whether the file exists, unless that is already done.

pub fn invoke(
    self,
    client: &Client,
    reporter: Option<Arc<Mutex<dyn ProgressReporter>>>
) -> Result<(), Error>
[src]

Invoke the download action.

Auto Trait Implementations

impl<'a> Send for Download<'a>

impl<'a> Unpin for Download<'a>

impl<'a> Sync for Download<'a>

impl<'a> UnwindSafe for Download<'a>

impl<'a> RefUnwindSafe for Download<'a>

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Typeable for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self