pub struct ConcurrentReader { /* private fields */ }Implementations§
Source§impl ConcurrentReader
impl ConcurrentReader
pub fn new(max_workers: usize) -> Self
Sourcepub async fn read_all_temperature_data(
&self,
base_path: &Path,
) -> Result<TemperatureData>
pub async fn read_all_temperature_data( &self, base_path: &Path, ) -> Result<TemperatureData>
Read all temperature data concurrently
Sourcepub fn process_station_data(
&self,
station_id: u32,
base_path: &Path,
) -> Result<StationTemperatureData>
pub fn process_station_data( &self, station_id: u32, base_path: &Path, ) -> Result<StationTemperatureData>
Process a single station’s data across all temperature types
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConcurrentReader
impl RefUnwindSafe for ConcurrentReader
impl Send for ConcurrentReader
impl Sync for ConcurrentReader
impl Unpin for ConcurrentReader
impl UnwindSafe for ConcurrentReader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more