pub struct SvgOptions {
pub font_size_pt: Dim,
pub color: Color,
pub display: bool,
}Expand description
Options for render_svg.
§Examples
use latex_rust::{Color, Dim, SvgOptions};
let mut opt = SvgOptions::new();
opt.font_size_pt = Dim::from_i64(12);
opt.color = Color::rgb(0, 0, 0);
opt.display = false;Fields§
§font_size_pt: DimEm size in points (SVG width/height use pt).
color: ColorDefault glyph fill.
display: boolWhen using latex_to_svg, pick display vs text style.
Implementations§
Source§impl SvgOptions
impl SvgOptions
Trait Implementations§
Source§impl Clone for SvgOptions
impl Clone for SvgOptions
Source§fn clone(&self) -> SvgOptions
fn clone(&self) -> SvgOptions
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 SvgOptions
impl Debug for SvgOptions
Auto Trait Implementations§
impl Freeze for SvgOptions
impl RefUnwindSafe for SvgOptions
impl Send for SvgOptions
impl Sync for SvgOptions
impl Unpin for SvgOptions
impl UnsafeUnpin for SvgOptions
impl UnwindSafe for SvgOptions
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