core: make Out type public

This commit is contained in:
Aode (lion) 2021-11-29 17:44:38 -06:00
parent dcdfa281c6
commit c2ac577dce

View file

@ -9,7 +9,8 @@ use crate::{
use std::{rc::Rc, sync::Arc};
use url::Url;
type Out<D> = <D as Dereference>::Output;
/// Simplification for <Blah as Dereference>::Output
pub type Out<D> = <D as Dereference>::Output;
/// An extension of Activity that is aware of it's Actor and Object types
#[async_trait::async_trait(?Send)]