#[non_exhaustive]pub struct TableFieldUrlConfigurationBuilder { /* private fields */ }Expand description
A builder for TableFieldUrlConfiguration.
Implementations§
source§impl TableFieldUrlConfigurationBuilder
impl TableFieldUrlConfigurationBuilder
sourcepub fn link_configuration(self, input: TableFieldLinkConfiguration) -> Self
pub fn link_configuration(self, input: TableFieldLinkConfiguration) -> Self
The link configuration of a table field URL.
sourcepub fn set_link_configuration(
self,
input: Option<TableFieldLinkConfiguration>
) -> Self
pub fn set_link_configuration( self, input: Option<TableFieldLinkConfiguration> ) -> Self
The link configuration of a table field URL.
sourcepub fn get_link_configuration(&self) -> &Option<TableFieldLinkConfiguration>
pub fn get_link_configuration(&self) -> &Option<TableFieldLinkConfiguration>
The link configuration of a table field URL.
sourcepub fn image_configuration(self, input: TableFieldImageConfiguration) -> Self
pub fn image_configuration(self, input: TableFieldImageConfiguration) -> Self
The image configuration of a table field URL.
sourcepub fn set_image_configuration(
self,
input: Option<TableFieldImageConfiguration>
) -> Self
pub fn set_image_configuration( self, input: Option<TableFieldImageConfiguration> ) -> Self
The image configuration of a table field URL.
sourcepub fn get_image_configuration(&self) -> &Option<TableFieldImageConfiguration>
pub fn get_image_configuration(&self) -> &Option<TableFieldImageConfiguration>
The image configuration of a table field URL.
sourcepub fn build(self) -> TableFieldUrlConfiguration
pub fn build(self) -> TableFieldUrlConfiguration
Consumes the builder and constructs a TableFieldUrlConfiguration.
Trait Implementations§
source§impl Clone for TableFieldUrlConfigurationBuilder
impl Clone for TableFieldUrlConfigurationBuilder
source§fn clone(&self) -> TableFieldUrlConfigurationBuilder
fn clone(&self) -> TableFieldUrlConfigurationBuilder
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 TableFieldUrlConfigurationBuilder
impl Default for TableFieldUrlConfigurationBuilder
source§fn default() -> TableFieldUrlConfigurationBuilder
fn default() -> TableFieldUrlConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TableFieldUrlConfigurationBuilder
impl PartialEq for TableFieldUrlConfigurationBuilder
source§fn eq(&self, other: &TableFieldUrlConfigurationBuilder) -> bool
fn eq(&self, other: &TableFieldUrlConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableFieldUrlConfigurationBuilder
Auto Trait Implementations§
impl Freeze for TableFieldUrlConfigurationBuilder
impl RefUnwindSafe for TableFieldUrlConfigurationBuilder
impl Send for TableFieldUrlConfigurationBuilder
impl Sync for TableFieldUrlConfigurationBuilder
impl Unpin for TableFieldUrlConfigurationBuilder
impl UnwindSafe for TableFieldUrlConfigurationBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.