pub struct ValidationSession {
pub session_id: String,
pub yaml_original: String,
pub yaml_current: String,
pub fixes_applied: Vec<FixRecord>,
pub pending_ambiguities: Vec<AmbiguityQuestion>,
pub status: SessionStatus,
pub created_at: String,
}Expand description
Stateful session tracking an interactive validation + repair workflow.
Fields§
§session_id: String§yaml_original: String§yaml_current: String§fixes_applied: Vec<FixRecord>§pending_ambiguities: Vec<AmbiguityQuestion>§status: SessionStatus§created_at: StringTrait Implementations§
Source§impl Clone for ValidationSession
impl Clone for ValidationSession
Source§fn clone(&self) -> ValidationSession
fn clone(&self) -> ValidationSession
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidationSession
impl Debug for ValidationSession
Source§impl<'de> Deserialize<'de> for ValidationSession
impl<'de> Deserialize<'de> for ValidationSession
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 ValidationSession
impl RefUnwindSafe for ValidationSession
impl Send for ValidationSession
impl Sync for ValidationSession
impl Unpin for ValidationSession
impl UnsafeUnpin for ValidationSession
impl UnwindSafe for ValidationSession
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