mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-13 22:31:21 +00:00
12 lines
348 B
Rust
12 lines
348 B
Rust
|
#![allow(unused_imports)]
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
#[wasm_bindgen]
|
||
|
#[doc = "The `CanvasWindingRule` enum."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `CanvasWindingRule`*"]
|
||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||
|
pub enum CanvasWindingRule {
|
||
|
Nonzero = "nonzero",
|
||
|
Evenodd = "evenodd",
|
||
|
}
|