pub struct PlanningSessionRecord {
pub id: String,
pub prompt: String,
pub status: String,
pub created_at: String,
pub updated_at: String,
pub iterations: u64,
}Fields§
§id: String§prompt: String§status: String§created_at: String§updated_at: String§iterations: u64Trait Implementations§
Source§impl Clone for PlanningSessionRecord
impl Clone for PlanningSessionRecord
Source§fn clone(&self) -> PlanningSessionRecord
fn clone(&self) -> PlanningSessionRecord
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 PlanningSessionRecord
impl Debug for PlanningSessionRecord
Auto Trait Implementations§
impl Freeze for PlanningSessionRecord
impl RefUnwindSafe for PlanningSessionRecord
impl Send for PlanningSessionRecord
impl Sync for PlanningSessionRecord
impl Unpin for PlanningSessionRecord
impl UnsafeUnpin for PlanningSessionRecord
impl UnwindSafe for PlanningSessionRecord
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