pub struct StaticDependencyPlanner { /* private fields */ }Expand description
静的な依存グラフプランナー(LLM 不使用)
事前定義されたパターンから依存グラフを生成。 テストや LLM なしでの動作確認に使用。
Implementations§
Source§impl StaticDependencyPlanner
impl StaticDependencyPlanner
pub fn new() -> Self
Sourcepub fn with_pattern(
self,
name: impl Into<String>,
graph: DependencyGraph,
) -> Self
pub fn with_pattern( self, name: impl Into<String>, graph: DependencyGraph, ) -> Self
パターンを追加
Sourcepub fn with_default_pattern(self, name: impl Into<String>) -> Self
pub fn with_default_pattern(self, name: impl Into<String>) -> Self
デフォルトパターンを設定
Sourcepub fn with_file_exploration_pattern(self) -> Self
pub fn with_file_exploration_pattern(self) -> Self
ファイル探索パターンを追加(組み込み)
Grep|List → Read のパターン。
Sourcepub fn with_code_search_pattern(self) -> Self
pub fn with_code_search_pattern(self) -> Self
コード検索パターンを追加(組み込み)
Grep → Read の強いパターン。
Trait Implementations§
Source§impl Clone for StaticDependencyPlanner
impl Clone for StaticDependencyPlanner
Source§fn clone(&self) -> StaticDependencyPlanner
fn clone(&self) -> StaticDependencyPlanner
Returns a duplicate of the value. Read more
1.0.0 · 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 StaticDependencyPlanner
impl Debug for StaticDependencyPlanner
Source§impl Default for StaticDependencyPlanner
impl Default for StaticDependencyPlanner
Source§fn default() -> StaticDependencyPlanner
fn default() -> StaticDependencyPlanner
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StaticDependencyPlanner
impl RefUnwindSafe for StaticDependencyPlanner
impl Send for StaticDependencyPlanner
impl Sync for StaticDependencyPlanner
impl Unpin for StaticDependencyPlanner
impl UnwindSafe for StaticDependencyPlanner
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more