pub struct PlanSqlTodosRow {
pub description: Option<String>,
pub id: Option<String>,
pub status: Option<String>,
pub title: Option<String>,
}Expand description
A single todo row read from the session SQL todos table. All fields are optional because the SQL schema is best-effort and the agent may not have populated every column.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§description: Option<String>Todo description.
id: Option<String>Todo identifier.
status: Option<String>Todo status.
title: Option<String>Todo title.
Trait Implementations§
Source§impl Clone for PlanSqlTodosRow
impl Clone for PlanSqlTodosRow
Source§fn clone(&self) -> PlanSqlTodosRow
fn clone(&self) -> PlanSqlTodosRow
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 PlanSqlTodosRow
impl Debug for PlanSqlTodosRow
Source§impl Default for PlanSqlTodosRow
impl Default for PlanSqlTodosRow
Source§fn default() -> PlanSqlTodosRow
fn default() -> PlanSqlTodosRow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlanSqlTodosRow
impl<'de> Deserialize<'de> for PlanSqlTodosRow
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 PlanSqlTodosRow
impl RefUnwindSafe for PlanSqlTodosRow
impl Send for PlanSqlTodosRow
impl Sync for PlanSqlTodosRow
impl Unpin for PlanSqlTodosRow
impl UnsafeUnpin for PlanSqlTodosRow
impl UnwindSafe for PlanSqlTodosRow
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