16 lines
368 B
Rust
16 lines
368 B
Rust
![]() |
use crate::error::CustomError;
|
||
|
|
||
|
use super::registry::Registry;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub(crate) struct IPlainListItem {}
|
||
|
|
||
|
impl IPlainListItem {
|
||
|
pub(crate) async fn new<'parse>(
|
||
|
registry: &mut Registry<'parse>,
|
||
|
plain_list_item: &organic::types::PlainListItem<'parse>,
|
||
|
) -> Result<IPlainListItem, CustomError> {
|
||
|
Ok(IPlainListItem {})
|
||
|
}
|
||
|
}
|