pub struct RawItem {
pub type_: i64,
pub title: Option<String>,
pub body: Option<String>,
pub props: HashMap<String, String>,
}Expand description
解析后的原始条目:标题/正文 + 所有元数据键值对(均为字符串)。 后续按 type_ 转成下面的强类型结构。
Fields§
§type_: i64§title: Option<String>§body: Option<String>§props: HashMap<String, String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawItem
impl RefUnwindSafe for RawItem
impl Send for RawItem
impl Sync for RawItem
impl Unpin for RawItem
impl UnsafeUnpin for RawItem
impl UnwindSafe for RawItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more