pub(crate) struct InitHostConfigStatus {
pub(crate) harness: &'static str,
pub(crate) status: InitPhaseStatus,
pub(crate) path: String,
pub(crate) error: Option<String>,
}Expand description
Status for one generated host integration config.
Fields§
§harness: &'static strHarness/config shape name.
status: InitPhaseStatusFile status.
path: StringNormalized native display path.
error: Option<String>Error text when this host config could not be generated.
Trait Implementations§
Source§impl Debug for InitHostConfigStatus
impl Debug for InitHostConfigStatus
Auto Trait Implementations§
impl Freeze for InitHostConfigStatus
impl RefUnwindSafe for InitHostConfigStatus
impl Send for InitHostConfigStatus
impl Sync for InitHostConfigStatus
impl Unpin for InitHostConfigStatus
impl UnwindSafe for InitHostConfigStatus
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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