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 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.
Trait Implementations§
source§impl Clone for CellInputBuilder
impl Clone for CellInputBuilder
source§fn clone(&self) -> CellInputBuilder
fn clone(&self) -> CellInputBuilder
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 Debug for CellInputBuilder
impl Debug for CellInputBuilder
source§impl Default for CellInputBuilder
impl Default for CellInputBuilder
source§fn default() -> CellInputBuilder
fn default() -> CellInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CellInputBuilder> for CellInputBuilder
impl PartialEq<CellInputBuilder> for CellInputBuilder
source§fn eq(&self, other: &CellInputBuilder) -> bool
fn eq(&self, other: &CellInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CellInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CellInputBuilder
impl Send for CellInputBuilder
impl Sync for CellInputBuilder
impl Unpin for CellInputBuilder
impl UnwindSafe for CellInputBuilder
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