pub struct GrouplikeBlock<'a> {
pub name: &'a str,
pub subtype: BlockType,
pub specs: Vec<BlockSpec<'a>>,
pub blocks: Vec<TasklikeBlock<'a>>,
}
Expand description
A block which consists of multiple nested TasklikeBlock
s.
Fields§
§name: &'a str
Block name
subtype: BlockType
Specific type of block
specs: Vec<BlockSpec<'a>>
Header components
blocks: Vec<TasklikeBlock<'a>>
Sub-blocks
Trait Implementations§
Source§impl<'a> Debug for GrouplikeBlock<'a>
impl<'a> Debug for GrouplikeBlock<'a>
Source§impl<'a> PartialEq for GrouplikeBlock<'a>
impl<'a> PartialEq for GrouplikeBlock<'a>
impl<'a> Eq for GrouplikeBlock<'a>
impl<'a> StructuralPartialEq for GrouplikeBlock<'a>
Auto Trait Implementations§
impl<'a> Freeze for GrouplikeBlock<'a>
impl<'a> RefUnwindSafe for GrouplikeBlock<'a>
impl<'a> Send for GrouplikeBlock<'a>
impl<'a> Sync for GrouplikeBlock<'a>
impl<'a> Unpin for GrouplikeBlock<'a>
impl<'a> UnwindSafe for GrouplikeBlock<'a>
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