Struct nagiosplugin::StaticCheckable [−][src]
Use a StaticCheckable for things you want to check but which do not contain a metric.
Example: You check if an endpoint answers
let checkable = StaticCheckable::new("test", State::Critical).with_description("endpoint down"); let resource = resource![checkable]; assert!(resource.to_nagios_string().contains("'test' is CRITICAL: endpoint down"));
Implementations
impl StaticCheckable[src]
pub fn new(name: impl Into<String>, state: State) -> Self[src]
pub fn with_description(self, description: impl Into<String>) -> Self[src]
Trait Implementations
impl Checkable for StaticCheckable[src]
fn name(&self) -> &str[src]
fn description(&self) -> Option<&str>[src]
fn state(&self) -> Option<State>[src]
fn perf_string(&self) -> Option<String>[src]
impl Clone for StaticCheckable[src]
fn clone(&self) -> StaticCheckable[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for StaticCheckable[src]
Auto Trait Implementations
impl RefUnwindSafe for StaticCheckable
impl Send for StaticCheckable
impl Sync for StaticCheckable
impl Unpin for StaticCheckable
impl UnwindSafe for StaticCheckable
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,