pub struct Reasoning {
pub id: Option<String>,
pub summary: Vec<Value>,
pub content: Option<Value>,
pub encrypted_content: Option<String>,
pub extra: HashMap<String, Value>,
}Fields§
§id: Option<String>§summary: Vec<Value>Public summary entries (often empty in production logs).
content: Option<Value>Public reasoning content (often null).
encrypted_content: Option<String>Opaque encrypted reasoning blob. Preserved verbatim for round-trip fidelity.
extra: HashMap<String, Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Reasoning
impl<'de> Deserialize<'de> for Reasoning
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 Reasoning
impl RefUnwindSafe for Reasoning
impl Send for Reasoning
impl Sync for Reasoning
impl Unpin for Reasoning
impl UnsafeUnpin for Reasoning
impl UnwindSafe for Reasoning
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