pub enum FbdObjects {
Block(FbdObjects_block_Inline),
InVariable(FbdObjects_inVariable_Inline),
OutVariable(FbdObjects_outVariable_Inline),
InOutVariable(FbdObjects_inOutVariable_Inline),
Label(FbdObjects_label_Inline),
Jump(FbdObjects_jump_Inline),
Return(FbdObjects_return_Inline),
}Expand description
fbdObjects choice group
Variants§
Block(FbdObjects_block_Inline)
InVariable(FbdObjects_inVariable_Inline)
OutVariable(FbdObjects_outVariable_Inline)
InOutVariable(FbdObjects_inOutVariable_Inline)
Label(FbdObjects_label_Inline)
Jump(FbdObjects_jump_Inline)
Return(FbdObjects_return_Inline)
Trait Implementations§
Source§impl Clone for FbdObjects
impl Clone for FbdObjects
Source§fn clone(&self) -> FbdObjects
fn clone(&self) -> FbdObjects
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 FbdObjects
impl Debug for FbdObjects
Source§impl<'de> Deserialize<'de> for FbdObjects
impl<'de> Deserialize<'de> for FbdObjects
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 FbdObjects
impl PartialEq for FbdObjects
Source§impl Serialize for FbdObjects
impl Serialize for FbdObjects
impl StructuralPartialEq for FbdObjects
Auto Trait Implementations§
impl Freeze for FbdObjects
impl RefUnwindSafe for FbdObjects
impl Send for FbdObjects
impl Sync for FbdObjects
impl Unpin for FbdObjects
impl UnwindSafe for FbdObjects
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