pub enum TesselateBatch {
Color,
Image {
id: String,
},
Text,
Procedural {
id: String,
images: Vec<String>,
parameters: HashMap<String, Scalar>,
},
ClipPush {
x: f32,
y: f32,
w: f32,
h: f32,
},
ClipPop,
Debug,
}
Variants§
Trait Implementations§
Source§impl Clone for TesselateBatch
impl Clone for TesselateBatch
Source§fn clone(&self) -> TesselateBatch
fn clone(&self) -> TesselateBatch
Returns a duplicate of the value. Read more
1.0.0 · 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 TesselateBatch
impl Debug for TesselateBatch
Source§impl PartialEq for TesselateBatch
impl PartialEq for TesselateBatch
Source§impl TesselateBatchConverter<TesselateBatch> for ()
impl TesselateBatchConverter<TesselateBatch> for ()
fn convert(&mut self, batch: TesselateBatch) -> Option<TesselateBatch>
impl StructuralPartialEq for TesselateBatch
Auto Trait Implementations§
impl Freeze for TesselateBatch
impl RefUnwindSafe for TesselateBatch
impl Send for TesselateBatch
impl Sync for TesselateBatch
impl Unpin for TesselateBatch
impl UnwindSafe for TesselateBatch
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