pub struct SvgImage {
pub width: f32,
pub height: f32,
pub data: SvgNode,
pub raw_data: Vec<u8>,
pub key: Option<String>,
}Fields§
§width: f32§height: f32§data: SvgNode§raw_data: Vec<u8>§key: Option<String>Trait Implementations§
impl StructuralPartialEq for SvgImage
Auto Trait Implementations§
impl Freeze for SvgImage
impl RefUnwindSafe for SvgImage
impl Send for SvgImage
impl Sync for SvgImage
impl Unpin for SvgImage
impl UnsafeUnpin for SvgImage
impl UnwindSafe for SvgImage
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