pub struct Transcript { /* private fields */ }Expand description
A session transcript.
Implementations§
Source§impl Transcript
impl Transcript
Sourcepub fn from_entries(entries: Vec<Entry>) -> Self
pub fn from_entries(entries: Vec<Entry>) -> Self
Create a transcript from entries.
Sourcepub fn from_json_str(json: &str) -> Result<Self, FMError>
pub fn from_json_str(json: &str) -> Result<Self, FMError>
Parse a FoundationModels transcript JSON string.
§Errors
Returns FMError::DecodingFailure if json does not match the SDK’s
transcript encoding.
Sourcepub fn to_json_string(&self) -> Result<String, FMError>
pub fn to_json_string(&self) -> Result<String, FMError>
Serialize the transcript back to FoundationModels’ native JSON shape.
§Errors
Returns FMError::InvalidArgument if one of the entries contains an
invalid JSON payload.
Trait Implementations§
Source§impl Clone for Transcript
impl Clone for Transcript
Source§fn clone(&self) -> Transcript
fn clone(&self) -> Transcript
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 Transcript
impl Debug for Transcript
Source§impl Default for Transcript
impl Default for Transcript
Source§fn default() -> Transcript
fn default() -> Transcript
Returns the “default value” for a type. Read more
Source§impl PartialEq for Transcript
impl PartialEq for Transcript
Source§fn eq(&self, other: &Transcript) -> bool
fn eq(&self, other: &Transcript) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Transcript
Auto Trait Implementations§
impl Freeze for Transcript
impl RefUnwindSafe for Transcript
impl Send for Transcript
impl Sync for Transcript
impl Unpin for Transcript
impl UnsafeUnpin for Transcript
impl UnwindSafe for Transcript
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