natter/src/intermediate/property_drawer.rs
2023-10-29 12:24:49 -04:00

16 lines
396 B
Rust

use crate::error::CustomError;
use super::registry::Registry;
#[derive(Debug)]
pub(crate) struct IPropertyDrawer {}
impl IPropertyDrawer {
pub(crate) async fn new<'intermediate, 'parse>(
registry: &mut Registry<'intermediate, 'parse>,
original: &organic::types::PropertyDrawer<'parse>,
) -> Result<IPropertyDrawer, CustomError> {
Ok(IPropertyDrawer {})
}
}