pub struct IntoAdapter<T, U>(/* private fields */);Expand description
An adapter struct for facilitating asynchronous type conversions to another type.
This zero-sized type uses PhantomData to represent a conversion between generic types T and U,
providing a marker for conversion-related operations in asynchronous contexts.
§Examples
// Used as a type-level marker for async conversion strategies let _adapter = IntoAdapter::<SourceType, TargetType>(PhantomData);
Auto Trait Implementations§
impl<T, U> Freeze for IntoAdapter<T, U>
impl<T, U> RefUnwindSafe for IntoAdapter<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for IntoAdapter<T, U>
impl<T, U> Sync for IntoAdapter<T, U>
impl<T, U> Unpin for IntoAdapter<T, U>
impl<T, U> UnwindSafe for IntoAdapter<T, U>where
T: UnwindSafe,
U: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsyncTryFrom<T> for Twhere
T: Send,
impl<T> AsyncTryFrom<T> for Twhere
T: Send,
type Error = Infallible
fn async_try_from<'async_trait>(
value: T,
) -> Pin<Box<dyn Future<Output = Result<T, <T as AsyncTryFrom<T>>::Error>> + Send + 'async_trait>>where
T: 'async_trait,
Source§impl<T, U> AsyncTryInto<U> for Twhere
U: AsyncTryFrom<T>,
T: Send,
impl<T, U> AsyncTryInto<U> for Twhere
U: AsyncTryFrom<T>,
T: Send,
type Error = <U as AsyncTryFrom<T>>::Error
fn async_try_into<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<U, <T as AsyncTryInto<U>>::Error>> + Send + 'async_trait>>where
T: 'async_trait,
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