pub struct SetupClaudeDoctorMessages {
pub installed: &'static str,
pub legacy_alert: &'static str,
pub legacy_tip: &'static str,
pub missing_alert: &'static str,
pub missing_tip: &'static str,
}Expand description
Source-of-truth strings for the Claude Code section of gw doctor.
Fields§
§installed: &'static str§legacy_alert: &'static str§legacy_tip: &'static str§missing_alert: &'static str§missing_tip: &'static strAuto Trait Implementations§
impl Freeze for SetupClaudeDoctorMessages
impl RefUnwindSafe for SetupClaudeDoctorMessages
impl Send for SetupClaudeDoctorMessages
impl Sync for SetupClaudeDoctorMessages
impl Unpin for SetupClaudeDoctorMessages
impl UnsafeUnpin for SetupClaudeDoctorMessages
impl UnwindSafe for SetupClaudeDoctorMessages
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> 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