Trait CanGetFile

Source
pub trait CanGetFile {
    // Required method
    fn get_file(&self) -> GetFile;
}
Expand description

Get basic info about a file and prepare it for downloading.

Required Methods§

Source

fn get_file(&self) -> GetFile

Implementors§

Source§

impl<F> CanGetFile for F
where F: ToFileRef,