pub struct ProjectChatOptions {
pub allow_structural_zip: bool,
pub order_by_source_time: bool,
pub annotate_source_time: bool,
}Expand description
Options for project_chat_with.
Fields§
§allow_structural_zip: boolWhen true (default), allow ProjectionStrategy::StructuralOrdinalZip
if structural gates pass. When false, always chronological.
order_by_source_time: boolWhen true (default), sort chronological blocks by dialect observational
order when present: source_time.first_ms, then source_step, then emit
index. When neither time nor step is present, emit order is preserved.
Set false to force pure emit-order chat.
annotate_source_time: boolWhen true (default), annotate lines with dialect source-time / source-step when known.
Trait Implementations§
Source§impl Clone for ProjectChatOptions
impl Clone for ProjectChatOptions
Source§fn clone(&self) -> ProjectChatOptions
fn clone(&self) -> ProjectChatOptions
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 ProjectChatOptions
impl Debug for ProjectChatOptions
Auto Trait Implementations§
impl Freeze for ProjectChatOptions
impl RefUnwindSafe for ProjectChatOptions
impl Send for ProjectChatOptions
impl Sync for ProjectChatOptions
impl Unpin for ProjectChatOptions
impl UnsafeUnpin for ProjectChatOptions
impl UnwindSafe for ProjectChatOptions
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