pub struct TranscriptState {
pub session_id: Option<String>,
pub turn_id: Option<String>,
pub cwd: Option<String>,
pub active_cwd: Option<String>,
pub project: Option<String>,
pub active_project: Option<String>,
pub model: Option<String>,
/* private fields */
}Fields§
§session_id: Option<String>§turn_id: Option<String>§cwd: Option<String>§active_cwd: Option<String>§project: Option<String>§active_project: Option<String>§model: Option<String>Trait Implementations§
Source§impl Clone for TranscriptState
impl Clone for TranscriptState
Source§fn clone(&self) -> TranscriptState
fn clone(&self) -> TranscriptState
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 TranscriptState
impl Debug for TranscriptState
Source§impl Default for TranscriptState
impl Default for TranscriptState
Source§fn default() -> TranscriptState
fn default() -> TranscriptState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TranscriptState
impl RefUnwindSafe for TranscriptState
impl Send for TranscriptState
impl Sync for TranscriptState
impl Unpin for TranscriptState
impl UnsafeUnpin for TranscriptState
impl UnwindSafe for TranscriptState
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