pub struct FindCommand {
pub role: Option<String>,
pub tag: Option<String>,
pub label: Option<String>,
pub pattern: Option<String>,
}Expand description
FIND command - pattern-based search (no RAG needed)
Fields§
§role: Option<String>Find by semantic role
tag: Option<String>Find by tag
label: Option<String>Find by label
pattern: Option<String>Find by content pattern (regex)
Trait Implementations§
Source§impl Clone for FindCommand
impl Clone for FindCommand
Source§fn clone(&self) -> FindCommand
fn clone(&self) -> FindCommand
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 FindCommand
impl Debug for FindCommand
Source§impl Default for FindCommand
impl Default for FindCommand
Source§fn default() -> FindCommand
fn default() -> FindCommand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FindCommand
impl<'de> Deserialize<'de> for FindCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FindCommand
impl PartialEq for FindCommand
Source§impl Serialize for FindCommand
impl Serialize for FindCommand
impl StructuralPartialEq for FindCommand
Auto Trait Implementations§
impl Freeze for FindCommand
impl RefUnwindSafe for FindCommand
impl Send for FindCommand
impl Sync for FindCommand
impl Unpin for FindCommand
impl UnwindSafe for FindCommand
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