pub struct LoreAtom {
pub id: String,
pub kind: LoreKind,
pub state: AtomState,
pub title: String,
pub body: Option<String>,
pub scope: Option<String>,
pub path: Option<PathBuf>,
pub validation_script: Option<String>,
pub created_unix_seconds: u64,
}Fields§
§id: String§kind: LoreKind§state: AtomState§title: String§body: Option<String>§scope: Option<String>§path: Option<PathBuf>§validation_script: Option<String>§created_unix_seconds: u64Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoreAtom
impl<'de> Deserialize<'de> for LoreAtom
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LoreAtom
impl RefUnwindSafe for LoreAtom
impl Send for LoreAtom
impl Sync for LoreAtom
impl Unpin for LoreAtom
impl UnsafeUnpin for LoreAtom
impl UnwindSafe for LoreAtom
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