pub struct StopResult {
pub name: String,
pub error: Option<AppError>,
}Expand description
Detailed result for an attempted component stop.
Fields§
§name: StringComponent name.
error: Option<AppError>Stop error, if one occurred.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for StopResult
impl !UnwindSafe for StopResult
impl Freeze for StopResult
impl Send for StopResult
impl Sync for StopResult
impl Unpin for StopResult
impl UnsafeUnpin for StopResult
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