pub struct SvgDrawer;
Expand description
The SvgDrawer
type provides the transformation of the embedding information into the Svg
format.
Implementations§
Trait Implementations§
Source§impl Drawer for SvgDrawer
The concrete implementation of the Drawer
trait for SvgDrawer
.
impl Drawer for SvgDrawer
The concrete implementation of the Drawer
trait for SvgDrawer
.
Source§fn draw(&self, file_name: &Path, embedding: &[EmbeddedNode]) -> Result<()>
fn draw(&self, file_name: &Path, embedding: &[EmbeddedNode]) -> Result<()>
The concrete implementation of the Drawer::draw
trait method.
The realization is as it is - with no way to configure for instance the font used.
This decision was mode for the sake of simplicity.
Anyway it should be easy to provide ones own Drawer implementation that fits the concrete
use case better.
When using the Layouter API you can set the Drawer instance by calling the with_drawer
method.
§Panics
The method should not panic. If you encounter a panic this should be originated from bugs in coding. Please report such panics.
§Complexity
The algorithm is of time complexity class O(n).
Auto Trait Implementations§
impl Freeze for SvgDrawer
impl RefUnwindSafe for SvgDrawer
impl Send for SvgDrawer
impl Sync for SvgDrawer
impl Unpin for SvgDrawer
impl UnwindSafe for SvgDrawer
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