pub struct AssistantTextChunk {
pub visible_text: String,
pub citations: Vec<String>,
pub plan_segments: Vec<ProposedPlanSegment>,
}Fields§
§visible_text: String§citations: Vec<String>§plan_segments: Vec<ProposedPlanSegment>Implementations§
Trait Implementations§
Source§impl Clone for AssistantTextChunk
impl Clone for AssistantTextChunk
Source§fn clone(&self) -> AssistantTextChunk
fn clone(&self) -> AssistantTextChunk
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 AssistantTextChunk
impl Debug for AssistantTextChunk
Source§impl Default for AssistantTextChunk
impl Default for AssistantTextChunk
Source§fn default() -> AssistantTextChunk
fn default() -> AssistantTextChunk
Returns the “default value” for a type. Read more
impl Eq for AssistantTextChunk
Source§impl PartialEq for AssistantTextChunk
impl PartialEq for AssistantTextChunk
impl StructuralPartialEq for AssistantTextChunk
Auto Trait Implementations§
impl Freeze for AssistantTextChunk
impl RefUnwindSafe for AssistantTextChunk
impl Send for AssistantTextChunk
impl Sync for AssistantTextChunk
impl Unpin for AssistantTextChunk
impl UnsafeUnpin for AssistantTextChunk
impl UnwindSafe for AssistantTextChunk
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