pub struct Graphic {
pub attributes: Vec<Attribute>,
pub vertex_list: Vec<f32>,
pub group: Vec<Vec<PathOp>>,
pub models: Vec<Model>,
pub bitmaps: Vec<Bitmap>,
}Expand description
An RVG graphic that has been parsed, or will be parsed.
Fields§
§attributes: Vec<Attribute>§vertex_list: Vec<f32>§group: Vec<Vec<PathOp>>§models: Vec<Model>§bitmaps: Vec<Bitmap>Implementations§
Auto Trait Implementations§
impl Freeze for Graphic
impl RefUnwindSafe for Graphic
impl Send for Graphic
impl Sync for Graphic
impl Unpin for Graphic
impl UnwindSafe for Graphic
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