pub struct Builder { /* private fields */ }
Expand description
A builder for DefaultInteractiveLayoutConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn grid(self, input: DefaultGridLayoutConfiguration) -> Self
pub fn grid(self, input: DefaultGridLayoutConfiguration) -> Self
The options that determine the default settings for a grid layout configuration.
sourcepub fn set_grid(self, input: Option<DefaultGridLayoutConfiguration>) -> Self
pub fn set_grid(self, input: Option<DefaultGridLayoutConfiguration>) -> Self
The options that determine the default settings for a grid layout configuration.
sourcepub fn free_form(self, input: DefaultFreeFormLayoutConfiguration) -> Self
pub fn free_form(self, input: DefaultFreeFormLayoutConfiguration) -> Self
The options that determine the default settings of a free-form layout configuration.
sourcepub fn set_free_form(
self,
input: Option<DefaultFreeFormLayoutConfiguration>
) -> Self
pub fn set_free_form(
self,
input: Option<DefaultFreeFormLayoutConfiguration>
) -> Self
The options that determine the default settings of a free-form layout configuration.
sourcepub fn build(self) -> DefaultInteractiveLayoutConfiguration
pub fn build(self) -> DefaultInteractiveLayoutConfiguration
Consumes the builder and constructs a DefaultInteractiveLayoutConfiguration
.