11 lines
213 B
Rust
11 lines
213 B
Rust
![]() |
use crate::error::CustomError;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub(crate) struct Heading {}
|
||
|
|
||
|
impl Heading {
|
||
|
pub(crate) fn new(heading: &organic::types::Heading<'_>) -> Result<Heading, CustomError> {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|