pub struct InstallReport {
pub prometheus_listen: Option<String>,
pub prometheus_already_installed: bool,
pub tracing_already_installed: bool,
}Expand description
Report from install_observability so callers can log what actually
happened (recorder installed vs. already-installed vs. disabled).
Fields§
§prometheus_listen: Option<String>§prometheus_already_installed: bool§tracing_already_installed: boolTrait Implementations§
Source§impl Clone for InstallReport
impl Clone for InstallReport
Source§fn clone(&self) -> InstallReport
fn clone(&self) -> InstallReport
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 InstallReport
impl Debug for InstallReport
Source§impl Default for InstallReport
impl Default for InstallReport
Source§fn default() -> InstallReport
fn default() -> InstallReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstallReport
impl RefUnwindSafe for InstallReport
impl Send for InstallReport
impl Sync for InstallReport
impl Unpin for InstallReport
impl UnsafeUnpin for InstallReport
impl UnwindSafe for InstallReport
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