pub struct SuggestionRow {
pub id: i64,
pub session_id: String,
pub tool_id: String,
pub task_text: Option<String>,
pub score: Option<f64>,
pub suggested_at: String,
pub accepted: bool,
pub accepted_at: Option<String>,
}Fields§
§id: i64§session_id: String§tool_id: String§task_text: Option<String>§score: Option<f64>§suggested_at: String§accepted: bool§accepted_at: Option<String>Trait Implementations§
Source§impl Clone for SuggestionRow
impl Clone for SuggestionRow
Source§fn clone(&self) -> SuggestionRow
fn clone(&self) -> SuggestionRow
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 SuggestionRow
impl Debug for SuggestionRow
Source§impl<'de> Deserialize<'de> for SuggestionRow
impl<'de> Deserialize<'de> for SuggestionRow
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 SuggestionRow
impl RefUnwindSafe for SuggestionRow
impl Send for SuggestionRow
impl Sync for SuggestionRow
impl Unpin for SuggestionRow
impl UnsafeUnpin for SuggestionRow
impl UnwindSafe for SuggestionRow
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