#[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 get_interactive_layout_configuration(
&self
) -> &Option<DefaultInteractiveLayoutConfiguration>
pub fn get_interactive_layout_configuration( &self ) -> &Option<DefaultInteractiveLayoutConfiguration>
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 get_paginated_layout_configuration(
&self
) -> &Option<DefaultPaginatedLayoutConfiguration>
pub fn get_paginated_layout_configuration( &self ) -> &Option<DefaultPaginatedLayoutConfiguration>
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 get_sheet_content_type(&self) -> &Option<SheetContentType>
pub fn get_sheet_content_type(&self) -> &Option<SheetContentType>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DefaultNewSheetConfigurationBuilder
impl Default for DefaultNewSheetConfigurationBuilder
source§fn default() -> DefaultNewSheetConfigurationBuilder
fn default() -> DefaultNewSheetConfigurationBuilder
source§impl PartialEq for DefaultNewSheetConfigurationBuilder
impl PartialEq for DefaultNewSheetConfigurationBuilder
source§fn eq(&self, other: &DefaultNewSheetConfigurationBuilder) -> bool
fn eq(&self, other: &DefaultNewSheetConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DefaultNewSheetConfigurationBuilder
Auto Trait Implementations§
impl Freeze for DefaultNewSheetConfigurationBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more