pub struct CodeOutputRecord {
pub output: String,
pub error: Option<String>,
}Expand description
RLM code execution output observed during a turn.
Fields§
§output: String§error: Option<String>Trait Implementations§
Source§impl Clone for CodeOutputRecord
impl Clone for CodeOutputRecord
Source§fn clone(&self) -> CodeOutputRecord
fn clone(&self) -> CodeOutputRecord
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 CodeOutputRecord
impl Debug for CodeOutputRecord
Source§impl<'de> Deserialize<'de> for CodeOutputRecord
impl<'de> Deserialize<'de> for CodeOutputRecord
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 CodeOutputRecord
impl RefUnwindSafe for CodeOutputRecord
impl Send for CodeOutputRecord
impl Sync for CodeOutputRecord
impl Unpin for CodeOutputRecord
impl UnsafeUnpin for CodeOutputRecord
impl UnwindSafe for CodeOutputRecord
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