pub struct RenderOutput {
pub svg: String,
pub width: f64,
pub height: f64,
pub diagnostics: Vec<Diagnostic>,
pub valid: bool,
}Fields§
§svg: String§width: f64§height: f64§diagnostics: Vec<Diagnostic>§valid: boolAuto Trait Implementations§
impl Freeze for RenderOutput
impl RefUnwindSafe for RenderOutput
impl Send for RenderOutput
impl Sync for RenderOutput
impl Unpin for RenderOutput
impl UnsafeUnpin for RenderOutput
impl UnwindSafe for RenderOutput
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