pub struct CADSSLAProperty {
pub element: String,
pub value: Value,
pub unit: String,
pub driver: Option<String>,
}Expand description
SLA property
Fields§
§element: StringSLA element name
value: ValueValue (number or string)
unit: StringUnit of measurement
driver: Option<String>Driver (e.g., “operational”, “compliance”)
Trait Implementations§
Source§impl Clone for CADSSLAProperty
impl Clone for CADSSLAProperty
Source§fn clone(&self) -> CADSSLAProperty
fn clone(&self) -> CADSSLAProperty
Returns a duplicate of the value. Read more
1.0.0 · 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 CADSSLAProperty
impl Debug for CADSSLAProperty
Source§impl<'de> Deserialize<'de> for CADSSLAProperty
impl<'de> Deserialize<'de> for CADSSLAProperty
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CADSSLAProperty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CADSSLAProperty, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CADSSLAProperty
impl PartialEq for CADSSLAProperty
Source§impl Serialize for CADSSLAProperty
impl Serialize for CADSSLAProperty
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CADSSLAProperty
Auto Trait Implementations§
impl Freeze for CADSSLAProperty
impl RefUnwindSafe for CADSSLAProperty
impl Send for CADSSLAProperty
impl Sync for CADSSLAProperty
impl Unpin for CADSSLAProperty
impl UnwindSafe for CADSSLAProperty
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