pub struct RenderOutput {
pub svg: String,
pub width: f32,
pub height: f32,
pub view_box: String,
pub runtime: RuntimeVersion,
pub profile: RendererProfile,
pub diagnostics: RenderDiagnostics,
pub cache_fingerprint: String,
}Fields§
§svg: String§width: f32§height: f32§view_box: String§runtime: RuntimeVersion§profile: RendererProfile§diagnostics: RenderDiagnostics§cache_fingerprint: StringTrait Implementations§
Source§impl Clone for RenderOutput
impl Clone for RenderOutput
Source§fn clone(&self) -> RenderOutput
fn clone(&self) -> RenderOutput
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 RenderOutput
impl Debug for RenderOutput
Source§impl<'de> Deserialize<'de> for RenderOutput
impl<'de> Deserialize<'de> for RenderOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto 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