pub struct LocalIO<D: Data, DP: DataProvider<D>, FH: FinalizationHandler<D>, US: BackupWriter, UL: BackupReader> { /* private fields */ }Implementations§
Source§impl<D: Data, DP: DataProvider<D>, FH: FinalizationHandler<D>, US: BackupWriter, UL: BackupReader> LocalIO<D, DP, FH, US, UL>
impl<D: Data, DP: DataProvider<D>, FH: FinalizationHandler<D>, US: BackupWriter, UL: BackupReader> LocalIO<D, DP, FH, US, UL>
Trait Implementations§
Source§impl<D: Clone + Data, DP: Clone + DataProvider<D>, FH: Clone + FinalizationHandler<D>, US: Clone + BackupWriter, UL: Clone + BackupReader> Clone for LocalIO<D, DP, FH, US, UL>
impl<D: Clone + Data, DP: Clone + DataProvider<D>, FH: Clone + FinalizationHandler<D>, US: Clone + BackupWriter, UL: Clone + BackupReader> Clone for LocalIO<D, DP, FH, US, UL>
Auto Trait Implementations§
impl<D, DP, FH, US, UL> Freeze for LocalIO<D, DP, FH, US, UL>
impl<D, DP, FH, US, UL> RefUnwindSafe for LocalIO<D, DP, FH, US, UL>
impl<D, DP, FH, US, UL> Send for LocalIO<D, DP, FH, US, UL>
impl<D, DP, FH, US, UL> Sync for LocalIO<D, DP, FH, US, UL>
impl<D, DP, FH, US, UL> Unpin for LocalIO<D, DP, FH, US, UL>
impl<D, DP, FH, US, UL> UnwindSafe for LocalIO<D, DP, FH, US, UL>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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