2023-10-29 21:29:16 +00:00
|
|
|
use super::macros::intermediate;
|
2023-10-27 21:48:19 +00:00
|
|
|
use super::registry::Registry;
|
2023-10-29 21:29:16 +00:00
|
|
|
use crate::error::CustomError;
|
2023-10-27 21:48:19 +00:00
|
|
|
|
2023-10-29 19:36:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2023-10-28 00:27:50 +00:00
|
|
|
pub(crate) struct IEntity {
|
|
|
|
pub(crate) html: String,
|
|
|
|
}
|
2023-10-27 21:48:19 +00:00
|
|
|
|
2023-10-29 22:35:42 +00:00
|
|
|
intermediate!(IEntity, Entity, original, registry, {
|
2023-10-29 21:29:16 +00:00
|
|
|
Ok(IEntity {
|
|
|
|
html: original.html.to_owned(),
|
|
|
|
})
|
|
|
|
});
|