#[non_exhaustive]pub struct CascadingControlSourceBuilder { /* private fields */ }
Expand description
A builder for CascadingControlSource
.
Implementations§
source§impl CascadingControlSourceBuilder
impl CascadingControlSourceBuilder
sourcepub fn source_sheet_control_id(self, input: impl Into<String>) -> Self
pub fn source_sheet_control_id(self, input: impl Into<String>) -> Self
The source sheet control ID of a CascadingControlSource
.
sourcepub fn set_source_sheet_control_id(self, input: Option<String>) -> Self
pub fn set_source_sheet_control_id(self, input: Option<String>) -> Self
The source sheet control ID of a CascadingControlSource
.
sourcepub fn get_source_sheet_control_id(&self) -> &Option<String>
pub fn get_source_sheet_control_id(&self) -> &Option<String>
The source sheet control ID of a CascadingControlSource
.
sourcepub fn column_to_match(self, input: ColumnIdentifier) -> Self
pub fn column_to_match(self, input: ColumnIdentifier) -> Self
The column identifier that determines which column to look up for the source sheet control.
sourcepub fn set_column_to_match(self, input: Option<ColumnIdentifier>) -> Self
pub fn set_column_to_match(self, input: Option<ColumnIdentifier>) -> Self
The column identifier that determines which column to look up for the source sheet control.
sourcepub fn get_column_to_match(&self) -> &Option<ColumnIdentifier>
pub fn get_column_to_match(&self) -> &Option<ColumnIdentifier>
The column identifier that determines which column to look up for the source sheet control.
sourcepub fn build(self) -> CascadingControlSource
pub fn build(self) -> CascadingControlSource
Consumes the builder and constructs a CascadingControlSource
.
Trait Implementations§
source§impl Clone for CascadingControlSourceBuilder
impl Clone for CascadingControlSourceBuilder
source§fn clone(&self) -> CascadingControlSourceBuilder
fn clone(&self) -> CascadingControlSourceBuilder
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 CascadingControlSourceBuilder
impl Default for CascadingControlSourceBuilder
source§fn default() -> CascadingControlSourceBuilder
fn default() -> CascadingControlSourceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CascadingControlSourceBuilder
impl PartialEq for CascadingControlSourceBuilder
source§fn eq(&self, other: &CascadingControlSourceBuilder) -> bool
fn eq(&self, other: &CascadingControlSourceBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CascadingControlSourceBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CascadingControlSourceBuilder
impl Send for CascadingControlSourceBuilder
impl Sync for CascadingControlSourceBuilder
impl Unpin for CascadingControlSourceBuilder
impl UnwindSafe for CascadingControlSourceBuilder
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