pub struct TemplateConfig {
pub repeating: Option<bool>,
pub pseudorow: Option<bool>,
pub non_repeating: usize,
pub repeated: Vec<Cell>,
pub reversion: Option<Tokens>,
pub columns: Option<Vec<Cell>>,
pub tokens: Option<Vec<Token>>,
pub save_before: Option<VecDeque<Token>>,
pub save_between: Option<VecDeque<Token>>,
}Fields§
§repeating: Option<bool>§pseudorow: Option<bool>§non_repeating: usize§repeated: Vec<Cell>§reversion: Option<Tokens>§columns: Option<Vec<Cell>>§tokens: Option<Vec<Token>>§save_before: Option<VecDeque<Token>>§save_between: Option<VecDeque<Token>>Trait Implementations§
Source§impl Clone for TemplateConfig
impl Clone for TemplateConfig
Source§fn clone(&self) -> TemplateConfig
fn clone(&self) -> TemplateConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TemplateConfig
impl Debug for TemplateConfig
Source§impl Default for TemplateConfig
impl Default for TemplateConfig
Source§fn default() -> TemplateConfig
fn default() -> TemplateConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for TemplateConfig
impl !Send for TemplateConfig
impl !Sync for TemplateConfig
impl !UnwindSafe for TemplateConfig
impl Freeze for TemplateConfig
impl Unpin for TemplateConfig
impl UnsafeUnpin for TemplateConfig
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