pub trait AsBlockBuilder {
    // Required methods
    fn new_advanced_builder() -> BlockBuilder;
    fn as_advanced_builder(&self) -> BlockBuilder;
}
Expand description

Trait for obtaining an advanced builder for BlockView.

Required Methods§

source

fn new_advanced_builder() -> BlockBuilder

Creates a new advanced builder for BlockView.

source

fn as_advanced_builder(&self) -> BlockBuilder

Gets an advanced builder from the implementing type.

Object Safety§

This trait is not object safe.

Implementors§