pub struct RecommendedNextTools {
pub schema_version: u32,
pub steps: Vec<RecommendedToolStep>,
}Expand description
Ordered recommendation list (validate → compile → impact/diff → run).
Fields§
§schema_version: u32§steps: Vec<RecommendedToolStep>Implementations§
Source§impl RecommendedNextTools
impl RecommendedNextTools
pub fn golden_default_chain() -> Self
Trait Implementations§
Source§impl Clone for RecommendedNextTools
impl Clone for RecommendedNextTools
Source§fn clone(&self) -> RecommendedNextTools
fn clone(&self) -> RecommendedNextTools
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 RecommendedNextTools
impl Debug for RecommendedNextTools
Source§impl Default for RecommendedNextTools
impl Default for RecommendedNextTools
Source§impl<'de> Deserialize<'de> for RecommendedNextTools
impl<'de> Deserialize<'de> for RecommendedNextTools
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
Auto Trait Implementations§
impl Freeze for RecommendedNextTools
impl RefUnwindSafe for RecommendedNextTools
impl Send for RecommendedNextTools
impl Sync for RecommendedNextTools
impl Unpin for RecommendedNextTools
impl UnsafeUnpin for RecommendedNextTools
impl UnwindSafe for RecommendedNextTools
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