pub struct SloComplianceSys {
pub slo_stable: i64,
pub slo_marginal: i64,
pub slo_critical: i64,
pub no_slo: i64,
}Fields§
§slo_stable: i64§slo_marginal: i64§slo_critical: i64§no_slo: i64Trait Implementations§
Source§impl ChildPoint for SloComplianceSys
impl ChildPoint for SloComplianceSys
Source§impl Debug for SloComplianceSys
impl Debug for SloComplianceSys
Source§impl<'de> Deserialize<'de> for SloComplianceSys
impl<'de> Deserialize<'de> for SloComplianceSys
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SloComplianceSys
impl RefUnwindSafe for SloComplianceSys
impl Send for SloComplianceSys
impl Sync for SloComplianceSys
impl Unpin for SloComplianceSys
impl UnwindSafe for SloComplianceSys
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