pub struct SpacingSpec {
pub thick: String,
pub medium: String,
pub thin: String,
pub operator: String,
}Expand description
Concrete space representations for a rendering backend. Different backends (unicode text, HTML/CSS, LaTeX) provide their own spec.
Fields§
§thick: String§medium: String§thin: String§operator: StringTrait Implementations§
Source§impl Clone for SpacingSpec
impl Clone for SpacingSpec
Source§fn clone(&self) -> SpacingSpec
fn clone(&self) -> SpacingSpec
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 SpacingSpec
impl Debug for SpacingSpec
impl Eq for SpacingSpec
Source§impl PartialEq for SpacingSpec
impl PartialEq for SpacingSpec
impl StructuralPartialEq for SpacingSpec
Auto Trait Implementations§
impl Freeze for SpacingSpec
impl RefUnwindSafe for SpacingSpec
impl Send for SpacingSpec
impl Sync for SpacingSpec
impl Unpin for SpacingSpec
impl UnsafeUnpin for SpacingSpec
impl UnwindSafe for SpacingSpec
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