pub struct TableBuilder { /* private fields */ }Expand description
Builder for Table object.
Implementations§
Source§impl TableBuilder
impl TableBuilder
Sourcepub fn get_block_id(&self) -> Option<&String>
pub fn get_block_id(&self) -> Option<&String>
get block_id field value.
Sourcepub fn set_block_id(self, value: Option<impl Into<String>>) -> Self
pub fn set_block_id(self, value: Option<impl Into<String>>) -> Self
set block_id field value.
Sourcepub fn get_column_settings(&self) -> Option<&[ColumnSetting]>
pub fn get_column_settings(&self) -> Option<&[ColumnSetting]>
get column_settings field value.
Sourcepub fn set_column_settings(
self,
value: Option<impl Into<Vec<ColumnSetting>>>,
) -> Self
pub fn set_column_settings( self, value: Option<impl Into<Vec<ColumnSetting>>>, ) -> Self
set column_settings field value.
Sourcepub fn column_settings(self, value: impl Into<Vec<ColumnSetting>>) -> Self
pub fn column_settings(self, value: impl Into<Vec<ColumnSetting>>) -> Self
set column_settings field value.
Sourcepub fn column_setting(self, value: impl Into<ColumnSetting>) -> Self
pub fn column_setting(self, value: impl Into<ColumnSetting>) -> Self
push list element to column_settings field.
Trait Implementations§
Source§impl Debug for TableBuilder
impl Debug for TableBuilder
Auto Trait Implementations§
impl Freeze for TableBuilder
impl RefUnwindSafe for TableBuilder
impl Send for TableBuilder
impl Sync for TableBuilder
impl Unpin for TableBuilder
impl UnsafeUnpin for TableBuilder
impl UnwindSafe for TableBuilder
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