pub struct PlanRevisionRow {
pub revision_id: String,
pub session_id: String,
pub sequence: i32,
pub plan_json: String,
pub reason: String,
pub supersedes: Option<String>,
pub status: String,
}Expand description
Row type for plan_revisions table
Fields§
§revision_id: String§session_id: String§sequence: i32§plan_json: String§reason: String§supersedes: Option<String>§status: StringTrait Implementations§
Source§impl Clone for PlanRevisionRow
impl Clone for PlanRevisionRow
Source§fn clone(&self) -> PlanRevisionRow
fn clone(&self) -> PlanRevisionRow
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 moreAuto Trait Implementations§
impl Freeze for PlanRevisionRow
impl RefUnwindSafe for PlanRevisionRow
impl Send for PlanRevisionRow
impl Sync for PlanRevisionRow
impl Unpin for PlanRevisionRow
impl UnsafeUnpin for PlanRevisionRow
impl UnwindSafe for PlanRevisionRow
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