pub struct SpacableItem {
pub atom_type: Option<String>,
pub text: String,
pub baseline: usize,
}Expand description
A renderable atom with its math class and baseline info.
Fields§
§atom_type: Option<String>§text: String§baseline: usizeTrait Implementations§
Source§impl Clone for SpacableItem
impl Clone for SpacableItem
Source§fn clone(&self) -> SpacableItem
fn clone(&self) -> SpacableItem
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 SpacableItem
impl Debug for SpacableItem
impl Eq for SpacableItem
Source§impl PartialEq for SpacableItem
impl PartialEq for SpacableItem
impl StructuralPartialEq for SpacableItem
Auto Trait Implementations§
impl Freeze for SpacableItem
impl RefUnwindSafe for SpacableItem
impl Send for SpacableItem
impl Sync for SpacableItem
impl Unpin for SpacableItem
impl UnsafeUnpin for SpacableItem
impl UnwindSafe for SpacableItem
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