pub struct Steuerbarkeit {
pub stufen: Option<Stufen>,
pub schritte: Option<Schritte>,
pub fixierung: Option<String>,
}Expand description
Controllability definition of a steuerbare Ressource.
Either step-based (Stufen) or increment-based (Schritte).
Fields§
§stufen: Option<Stufen>Step-based controllability (optional — exclusive with Schritte).
schritte: Option<Schritte>Increment-based controllability (optional — exclusive with Stufen).
fixierung: Option<String>Whether the controllability values are fixed (optional attribute).
Trait Implementations§
Source§impl Clone for Steuerbarkeit
impl Clone for Steuerbarkeit
Source§fn clone(&self) -> Steuerbarkeit
fn clone(&self) -> Steuerbarkeit
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 Steuerbarkeit
impl Debug for Steuerbarkeit
Source§impl<'de> Deserialize<'de> for Steuerbarkeit
impl<'de> Deserialize<'de> for Steuerbarkeit
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
Source§impl PartialEq for Steuerbarkeit
impl PartialEq for Steuerbarkeit
Source§fn eq(&self, other: &Steuerbarkeit) -> bool
fn eq(&self, other: &Steuerbarkeit) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Steuerbarkeit
impl Serialize for Steuerbarkeit
impl StructuralPartialEq for Steuerbarkeit
Auto Trait Implementations§
impl Freeze for Steuerbarkeit
impl RefUnwindSafe for Steuerbarkeit
impl Send for Steuerbarkeit
impl Sync for Steuerbarkeit
impl Unpin for Steuerbarkeit
impl UnsafeUnpin for Steuerbarkeit
impl UnwindSafe for Steuerbarkeit
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