pub struct PlanSectionArtifact {
pub version: u32,
pub session_id: String,
pub updated_at: DateTime<Utc>,
pub sections: Vec<PlanSection>,
}Expand description
Indexed section metadata extracted from persisted plan markdown.
Fields§
§version: u32§session_id: String§updated_at: DateTime<Utc>§sections: Vec<PlanSection>Implementations§
Trait Implementations§
Source§impl Clone for PlanSectionArtifact
impl Clone for PlanSectionArtifact
Source§fn clone(&self) -> PlanSectionArtifact
fn clone(&self) -> PlanSectionArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlanSectionArtifact
impl Debug for PlanSectionArtifact
Source§impl<'de> Deserialize<'de> for PlanSectionArtifact
impl<'de> Deserialize<'de> for PlanSectionArtifact
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
Source§impl PartialEq for PlanSectionArtifact
impl PartialEq for PlanSectionArtifact
Source§fn eq(&self, other: &PlanSectionArtifact) -> bool
fn eq(&self, other: &PlanSectionArtifact) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlanSectionArtifact
impl Serialize for PlanSectionArtifact
impl StructuralPartialEq for PlanSectionArtifact
Auto Trait Implementations§
impl Freeze for PlanSectionArtifact
impl RefUnwindSafe for PlanSectionArtifact
impl Send for PlanSectionArtifact
impl Sync for PlanSectionArtifact
impl Unpin for PlanSectionArtifact
impl UnsafeUnpin for PlanSectionArtifact
impl UnwindSafe for PlanSectionArtifact
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