Struct IntoAdapter

Source
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>

§

impl<T, U> Send for IntoAdapter<T, U>
where T: Send, U: Send,

§

impl<T, U> Sync for IntoAdapter<T, U>
where T: Sync, U: Sync,

§

impl<T, U> Unpin for IntoAdapter<T, U>
where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for IntoAdapter<T, U>
where T: UnwindSafe, U: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsyncTryFrom<T> for T
where T: Send,

Source§

type Error = Infallible

Source§

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 T
where U: AsyncTryFrom<T>, T: Send,

Source§

type Error = <U as AsyncTryFrom<T>>::Error

Source§

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> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.