Struct aws_sdk_honeycode::types::builders::CellInputBuilder
source · #[non_exhaustive]pub struct CellInputBuilder { /* private fields */ }
Expand description
A builder for CellInput
.
Implementations§
source§impl CellInputBuilder
impl CellInputBuilder
sourcepub fn fact(self, input: impl Into<String>) -> Self
pub fn fact(self, input: impl Into<String>) -> Self
Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.
sourcepub fn set_fact(self, input: Option<String>) -> Self
pub fn set_fact(self, input: Option<String>) -> Self
Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.
sourcepub fn get_fact(&self) -> &Option<String>
pub fn get_fact(&self) -> &Option<String>
Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.
sourcepub fn facts(self, input: impl Into<String>) -> Self
pub fn facts(self, input: impl Into<String>) -> Self
Appends an item to facts
.
To override the contents of this collection use set_facts
.
A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.
sourcepub fn set_facts(self, input: Option<Vec<String>>) -> Self
pub fn set_facts(self, input: Option<Vec<String>>) -> Self
A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or rowIDs, and rowIDs should from the same table.
Trait Implementations§
source§impl Clone for CellInputBuilder
impl Clone for CellInputBuilder
source§fn clone(&self) -> CellInputBuilder
fn clone(&self) -> CellInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CellInputBuilder
impl Debug for CellInputBuilder
source§impl Default for CellInputBuilder
impl Default for CellInputBuilder
source§fn default() -> CellInputBuilder
fn default() -> CellInputBuilder
source§impl PartialEq for CellInputBuilder
impl PartialEq for CellInputBuilder
source§fn eq(&self, other: &CellInputBuilder) -> bool
fn eq(&self, other: &CellInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.