pub trait Downloadable: Sync + Send {
// Required methods
fn direct_path(&self) -> Option<&str>;
fn media_key(&self) -> Option<&[u8]>;
fn file_enc_sha256(&self) -> Option<&[u8]>;
fn file_sha256(&self) -> Option<&[u8]>;
fn file_length(&self) -> Option<u64>;
fn app_info(&self) -> MediaType;
}