#[non_exhaustive]pub struct DefaultNewSheetConfigurationBuilder { /* private fields */ }Expand description
A builder for DefaultNewSheetConfiguration.
Implementations§
source§impl DefaultNewSheetConfigurationBuilder
impl DefaultNewSheetConfigurationBuilder
sourcepub fn interactive_layout_configuration(
self,
input: DefaultInteractiveLayoutConfiguration
) -> Self
pub fn interactive_layout_configuration( self, input: DefaultInteractiveLayoutConfiguration ) -> Self
The options that determine the default settings for interactive layout configuration.
sourcepub fn set_interactive_layout_configuration(
self,
input: Option<DefaultInteractiveLayoutConfiguration>
) -> Self
pub fn set_interactive_layout_configuration( self, input: Option<DefaultInteractiveLayoutConfiguration> ) -> Self
The options that determine the default settings for interactive layout configuration.
sourcepub fn paginated_layout_configuration(
self,
input: DefaultPaginatedLayoutConfiguration
) -> Self
pub fn paginated_layout_configuration( self, input: DefaultPaginatedLayoutConfiguration ) -> Self
The options that determine the default settings for a paginated layout configuration.
sourcepub fn set_paginated_layout_configuration(
self,
input: Option<DefaultPaginatedLayoutConfiguration>
) -> Self
pub fn set_paginated_layout_configuration( self, input: Option<DefaultPaginatedLayoutConfiguration> ) -> Self
The options that determine the default settings for a paginated layout configuration.
sourcepub fn sheet_content_type(self, input: SheetContentType) -> Self
pub fn sheet_content_type(self, input: SheetContentType) -> Self
The option that determines the sheet content type.
sourcepub fn set_sheet_content_type(self, input: Option<SheetContentType>) -> Self
pub fn set_sheet_content_type(self, input: Option<SheetContentType>) -> Self
The option that determines the sheet content type.
sourcepub fn build(self) -> DefaultNewSheetConfiguration
pub fn build(self) -> DefaultNewSheetConfiguration
Consumes the builder and constructs a DefaultNewSheetConfiguration.
Trait Implementations§
source§impl Clone for DefaultNewSheetConfigurationBuilder
impl Clone for DefaultNewSheetConfigurationBuilder
source§fn clone(&self) -> DefaultNewSheetConfigurationBuilder
fn clone(&self) -> DefaultNewSheetConfigurationBuilder
Returns a copy 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 Default for DefaultNewSheetConfigurationBuilder
impl Default for DefaultNewSheetConfigurationBuilder
source§fn default() -> DefaultNewSheetConfigurationBuilder
fn default() -> DefaultNewSheetConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DefaultNewSheetConfigurationBuilder> for DefaultNewSheetConfigurationBuilder
impl PartialEq<DefaultNewSheetConfigurationBuilder> for DefaultNewSheetConfigurationBuilder
source§fn eq(&self, other: &DefaultNewSheetConfigurationBuilder) -> bool
fn eq(&self, other: &DefaultNewSheetConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DefaultNewSheetConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DefaultNewSheetConfigurationBuilder
impl Send for DefaultNewSheetConfigurationBuilder
impl Sync for DefaultNewSheetConfigurationBuilder
impl Unpin for DefaultNewSheetConfigurationBuilder
impl UnwindSafe for DefaultNewSheetConfigurationBuilder
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