Remove intermediate lifetime.
This commit is contained in:
@@ -6,9 +6,9 @@ use super::registry::Registry;
|
||||
pub(crate) struct ITable {}
|
||||
|
||||
impl ITable {
|
||||
pub(crate) async fn new<'intermediate, 'parse>(
|
||||
registry: &mut Registry<'intermediate, 'parse>,
|
||||
original: &organic::types::Table<'parse>,
|
||||
pub(crate) async fn new<'b, 'parse>(
|
||||
registry: &'b mut Registry<'parse>,
|
||||
original: &'b organic::types::Table<'parse>,
|
||||
) -> Result<ITable, CustomError> {
|
||||
Ok(ITable {})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user