1 2 3 4 5 6 7 8 9 10 11
use file::File; use std::path::PathBuf; use url::Url; #[derive(Debug)] pub enum StickerFile { FileId(String), Url(Url), InputFile(File), LocalFile(PathBuf), }