pub trait SyncSource {
// Required method
fn fetch(&self) -> Result<Vec<u8>, FetchError>;
}
Required Methods§
Implementors§
impl SyncSource for SingleFileSource
impl SyncSource for HttpSource
Available on crate feature
reqwest
only.