AtlasSymbolRelationsParams

Struct AtlasSymbolRelationsParams 

Source
struct AtlasSymbolRelationsParams {
Show 39 fields project_path: Option<String>, file: Option<String>, nearest_project: Option<bool>, query: Option<String>, view: Option<String>, compact: Option<bool>, cursor: Option<String>, roots: Option<Vec<String>>, symbol: Option<String>, symbol_parent: Option<String>, symbol_kind: Option<String>, symbol_signature: Option<String>, direction: Option<String>, relation: Option<String>, minimum_confidence: Option<String>, resolution: Option<String>, depth: Option<u32>, include_occurrences: Option<bool>, occurrence_limit: Option<u32>, edge_limit: Option<u32>, node_limit: Option<u32>, visited_limit: Option<u32>, occurrence_total_limit: Option<u32>, intermediate_bytes: Option<u64>, deadline_ms: Option<u64>, output_bytes: Option<u32>, analysis_mode: Option<String>, trace_target: Option<String>, trace_target_file: Option<String>, trace_target_parent: Option<String>, trace_target_kind: Option<String>, trace_target_signature: Option<String>, vcs: Option<String>, vcs_base: Option<String>, vcs_head: Option<String>, include_communities: Option<bool>, include_cycles: Option<bool>, include_dead_code: Option<bool>, limit: Option<usize>,
}
Expand description

MCP parameters for legacy, detailed, or closed-analysis relation navigation.

Fields§

§project_path: Option<String>

Optional project root for this call. Defaults to the active MCP project.

§file: Option<String>

Optional repository-relative file path.

§nearest_project: Option<bool>

Opt in to nearest indexed ProjectAtlas project discovery for absolute file paths.

§query: Option<String>

Optional symbol, signature, relation, or path query.

§view: Option<String>

Preserve legacy, opt in to detailed, or select closed analysis.

§compact: Option<bool>

Return the opt-in compact detailed projection while preserving exact selectors and trust.

§cursor: Option<String>

Resume one exact generation- and purpose-bound detailed page.

§roots: Option<Vec<String>>

Complete ordered project-root set for one read-only federated call.

§symbol: Option<String>

Exact symbol name used as the detailed anchor; omit for a file anchor.

§symbol_parent: Option<String>

Optional exact parent used to disambiguate the detailed symbol anchor.

§symbol_kind: Option<String>

Optional exact kind used to disambiguate the detailed symbol anchor.

§symbol_signature: Option<String>

Optional exact signature used to disambiguate the detailed symbol anchor.

§direction: Option<String>

Detailed traversal direction: outbound or inbound.

§relation: Option<String>

Optional exact legacy or extended relation family.

§minimum_confidence: Option<String>

Detailed confidence floor: exact, high, medium, or low.

§resolution: Option<String>

Detailed resolution filter.

§depth: Option<u32>

Maximum detailed traversal depth.

§include_occurrences: Option<bool>

Retain bounded exact source occurrences in detailed rows.

§occurrence_limit: Option<u32>

Maximum exact occurrences retained per detailed relation.

§edge_limit: Option<u32>

Maximum adjacency rows inspected by one detailed page.

§node_limit: Option<u32>

Maximum unique traversal nodes retained across continuation state.

§visited_limit: Option<u32>

Maximum unique visited-node state retained across continuation state.

§occurrence_total_limit: Option<u32>

Maximum exact occurrences retained across the complete page.

§intermediate_bytes: Option<u64>

Maximum decoded, cursor, and service-composition intermediate bytes.

§deadline_ms: Option<u64>

Maximum service-owned elapsed milliseconds.

§output_bytes: Option<u32>

Maximum encoded bytes admitted to the detailed response.

§analysis_mode: Option<String>

Closed analysis mode: architecture, impact, or trace.

§trace_target: Option<String>

Exact target symbol name for trace mode.

§trace_target_file: Option<String>

Exact target file for trace mode; alone selects a file target.

§trace_target_parent: Option<String>

Exact target parent for symbol trace mode.

§trace_target_kind: Option<String>

Exact target kind required by symbol trace mode.

§trace_target_signature: Option<String>

Exact target signature required by symbol trace mode.

§vcs: Option<String>

Impact VCS scope: working_tree, index, or revision_range.

§vcs_base: Option<String>

Older Git revision used by revision_range.

§vcs_head: Option<String>

Newer Git revision used by revision_range.

§include_communities: Option<bool>

Include communities with containment excluded.

§include_cycles: Option<bool>

Include dependency SCC findings.

§include_dead_code: Option<bool>

Include conservative dead-code candidates.

§limit: Option<usize>

Maximum rows to return.

Trait Implementations§

Source§

impl Debug for AtlasSymbolRelationsParams

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AtlasSymbolRelationsParams

Source§

fn default() -> AtlasSymbolRelationsParams

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for AtlasSymbolRelationsParams

Source§

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 JsonSchema for AtlasSymbolRelationsParams

Source§

fn schema_name() -> Cow<'static, str>

The name of the generated JSON Schema. Read more
Source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

fn json_schema(generator: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
Source§

fn inline_schema() -> bool

Whether JSON Schemas generated for this type should be included directly in parent schemas, rather than being re-used where possible using the $ref keyword. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,