implement Network receive
This commit is contained in:
@ -16,4 +16,4 @@ pub fn generate_preview(
|
||||
config: &ConvertConfig,
|
||||
) -> ::image::ImageResult<Vec<u8>> {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
@ -11,10 +11,10 @@ use std::path::{Path, PathBuf};
|
||||
use std::sync::Arc;
|
||||
|
||||
pub use self::search::Query;
|
||||
mod search;
|
||||
mod image_convert;
|
||||
mod search;
|
||||
|
||||
pub type TextureFileResult = Result< Arc<Vec<u8>> , TextureFileError>;
|
||||
pub type TextureFileResult = Result<Arc<Vec<u8>>, TextureFileError>;
|
||||
pub enum TextureFileError {
|
||||
NotFound,
|
||||
IoError(io::Error),
|
||||
@ -72,4 +72,3 @@ impl DataStore {
|
||||
unimplemented!();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -35,4 +35,4 @@ enum QueryFilter {
|
||||
InName(String),
|
||||
MinResolution(usize),
|
||||
BeforeDate { year: u16, month: u16, day: u16 },
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user