domani/src/origin.rs

27 lines
571 B
Rust
Raw Normal View History

2023-05-09 14:37:06 +00:00
use std::error::Error;
2023-05-04 12:56:31 +00:00
mod descr;
pub use self::descr::Descr;
pub mod store;
2023-05-09 14:37:06 +00:00
#[derive(thiserror::Error, Debug)]
pub enum ReadFileIntoError {
#[error("file not found")]
FileNotFound,
#[error(transparent)]
Unexpected(Box<dyn Error>),
}
#[mockall::automock]
/// Describes an origin which has already been synced locally and is available for reading files
/// from.
pub trait Origin {
fn descr(&self) -> &Descr;
fn read_file_into(
&self,
path: &str,
into: &mut dyn std::io::Write,
) -> Result<(), ReadFileIntoError>;
}