pub struct SvgOptions {
pub width: Option<f64>,
pub height: Option<f64>,
pub scale: f64,
}Expand description
Options for SVG generation.
Fields§
§width: Option<f64>Optional fixed width for the SVG output. If None, uses the page width.
height: Option<f64>Optional fixed height for the SVG output. If None, uses the page height.
scale: f64Scale factor for the SVG output. Default is 1.0.
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 · 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