SettingsDeserializeExt

Trait SettingsDeserializeExt 

Source
pub trait SettingsDeserializeExt {
    // Required method
    fn deserialize_boxed<'life0, 'life1, 'async_trait>(
        &'life0 self,
        deserializer: SettingsDeserializer<'life1>,
    ) -> Pin<Box<dyn Future<Output = Result<ExtensionSettings, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn deserialize_boxed<'life0, 'life1, 'async_trait>( &'life0 self, deserializer: SettingsDeserializer<'life1>, ) -> Pin<Box<dyn Future<Output = Result<ExtensionSettings, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementations on Foreign Types§

Source§

impl<T: SettingsDeserializeExt + ?Sized + Send + Sync> SettingsDeserializeExt for Arc<T>

Source§

fn deserialize_boxed<'life0, 'life1, 'async_trait>( &'life0 self, deserializer: SettingsDeserializer<'life1>, ) -> Pin<Box<dyn Future<Output = Result<ExtensionSettings, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§