pub enum CfgBlock {
Error(CfgErrorBlock),
If(CfgIfBlock),
Return(CfgReturnBlock),
Simple(CfgSimpleBlock),
Throw(CfgThrowBlock),
Try(CfgTryBlock),
WaitForFrame(CfgWaitForFrameBlock),
WaitForFrame2(CfgWaitForFrame2Block),
With(CfgWithBlock),
}
Variants§
Error(CfgErrorBlock)
If(CfgIfBlock)
Return(CfgReturnBlock)
Simple(CfgSimpleBlock)
Throw(CfgThrowBlock)
Try(CfgTryBlock)
WaitForFrame(CfgWaitForFrameBlock)
WaitForFrame2(CfgWaitForFrame2Block)
With(CfgWithBlock)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CfgBlock
impl<'de> Deserialize<'de> for CfgBlock
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
impl Eq for CfgBlock
impl StructuralPartialEq for CfgBlock
Auto Trait Implementations§
impl Freeze for CfgBlock
impl RefUnwindSafe for CfgBlock
impl Send for CfgBlock
impl Sync for CfgBlock
impl Unpin for CfgBlock
impl UnwindSafe for CfgBlock
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