pub struct AlignmentConfig {
pub template: Option<Template>,
pub open_container: OpenContainerFn,
pub close_container: CloseContainerFn,
pub open_row: OpenRowFn,
pub close_row: CloseRowFn,
pub open_column: OpenColumnFn,
pub close_column: CloseColumnFn,
pub properties: SymHashMap<Stored>,
pub xml_attributes: FxHashMap<String, String>,
pub is_math: bool,
}Fields§
§template: Option<Template>§open_container: OpenContainerFn§close_container: CloseContainerFn§open_row: OpenRowFn§close_row: CloseRowFn§open_column: OpenColumnFn§close_column: CloseColumnFn§properties: SymHashMap<Stored>§xml_attributes: FxHashMap<String, String>§is_math: boolAuto Trait Implementations§
impl !RefUnwindSafe for AlignmentConfig
impl !Send for AlignmentConfig
impl !Sync for AlignmentConfig
impl !UnwindSafe for AlignmentConfig
impl Freeze for AlignmentConfig
impl Unpin for AlignmentConfig
impl UnsafeUnpin for AlignmentConfig
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