/** * Rust Command - drift rust * * Analyze Rust projects: routes, error handling, traits, data access. * * @requirements Rust Language Support */ import { Command } from 'commander'; export interface RustOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Filter by framework */ framework?: string; } /** * Create the Rust command */ export declare function createRustCommand(): Command; //# sourceMappingURL=rust.d.ts.map