pub enum Area {
ProcessInput(DataSizeType),
ProcessOutput(DataSizeType),
DataBausteine(u16, DataSizeType),
V(DataSizeType),
}Variants§
ProcessInput(DataSizeType)
ProcessOutput(DataSizeType)
DataBausteine(u16, DataSizeType)
Merkers are address registers within the CPU. The number of available flag bytes depends on the respective CPU and can be taken from the technical data. You can use flag bits, flag bytes, flag words or flag double words in a PLC program. German thing, means building blocks This is your storage : db number, DataSizeType
V(DataSizeType)
Implementations§
Methods from Deref<Target = DataSizeType>§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Area
impl<'de> Deserialize<'de> for Area
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 Into<ItemRequest> for Area
impl Into<ItemRequest> for Area
Source§fn into(self) -> ItemRequest
fn into(self) -> ItemRequest
Converts this type into the (usually inferred) input type.
impl Copy for Area
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnwindSafe for Area
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