pub struct PipelineConfig {
pub max_token_budget: usize,
pub include_task: bool,
pub include_mission: bool,
pub include_memories: bool,
pub include_policy: bool,
pub include_skills: bool,
pub include_history: bool,
pub include_tools: bool,
pub include_agent: bool,
pub include_lineage: bool,
pub include_workers: bool,
pub include_evidence: bool,
}Fields§
§max_token_budget: usize§include_task: bool§include_mission: bool§include_memories: bool§include_policy: bool§include_skills: bool§include_history: bool§include_tools: bool§include_agent: bool§include_lineage: bool§include_workers: bool§include_evidence: boolTrait Implementations§
Source§impl Clone for PipelineConfig
impl Clone for PipelineConfig
Source§fn clone(&self) -> PipelineConfig
fn clone(&self) -> PipelineConfig
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 PipelineConfig
impl Debug for PipelineConfig
Auto Trait Implementations§
impl Freeze for PipelineConfig
impl RefUnwindSafe for PipelineConfig
impl Send for PipelineConfig
impl Sync for PipelineConfig
impl Unpin for PipelineConfig
impl UnsafeUnpin for PipelineConfig
impl UnwindSafe for PipelineConfig
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