[−][src]Struct web_sys::CanvasRenderingContext2d
The CanvasRenderingContext2D object
This API requires the following crate features to be activated: CanvasRenderingContext2d
Methods
impl CanvasRenderingContext2d[src]
pub fn draw_window(
&self,
window: &Window,
x: f64,
y: f64,
w: f64,
h: f64,
bg_color: &str
) -> Result<(), JsValue>[src]
&self,
window: &Window,
x: f64,
y: f64,
w: f64,
h: f64,
bg_color: &str
) -> Result<(), JsValue>
The drawWindow() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Window
impl CanvasRenderingContext2d[src]
pub fn draw_window_with_flags(
&self,
window: &Window,
x: f64,
y: f64,
w: f64,
h: f64,
bg_color: &str,
flags: u32
) -> Result<(), JsValue>[src]
&self,
window: &Window,
x: f64,
y: f64,
w: f64,
h: f64,
bg_color: &str,
flags: u32
) -> Result<(), JsValue>
The drawWindow() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Window
impl CanvasRenderingContext2d[src]
pub fn canvas(&self) -> Option<HtmlCanvasElement>[src]
The canvas getter
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlCanvasElement
impl CanvasRenderingContext2d[src]
pub fn global_alpha(&self) -> f64[src]
The globalAlpha getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_global_alpha(&self, global_alpha: f64)[src]
The globalAlpha setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn global_composite_operation(&self) -> Result<String, JsValue>[src]
The globalCompositeOperation getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_global_composite_operation(
&self,
global_composite_operation: &str
) -> Result<(), JsValue>[src]
&self,
global_composite_operation: &str
) -> Result<(), JsValue>
The globalCompositeOperation setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_image_element(
&self,
image: &HtmlImageElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlImageElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_svg_image_element(
&self,
image: &SvgImageElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
image: &SvgImageElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, SvgImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_canvas_element(
&self,
image: &HtmlCanvasElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlCanvasElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlCanvasElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_video_element(
&self,
image: &HtmlVideoElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlVideoElement,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlVideoElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_image_bitmap(
&self,
image: &ImageBitmap,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
image: &ImageBitmap,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageBitmap
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_image_element_and_dw_and_dh(
&self,
image: &HtmlImageElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlImageElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_svg_image_element_and_dw_and_dh(
&self,
image: &SvgImageElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &SvgImageElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, SvgImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_canvas_element_and_dw_and_dh(
&self,
image: &HtmlCanvasElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlCanvasElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlCanvasElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_video_element_and_dw_and_dh(
&self,
image: &HtmlVideoElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlVideoElement,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlVideoElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_image_bitmap_and_dw_and_dh(
&self,
image: &ImageBitmap,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &ImageBitmap,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageBitmap
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_image_element_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh(
&self,
image: &HtmlImageElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlImageElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_svg_image_element_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh(
&self,
image: &SvgImageElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &SvgImageElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, SvgImageElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_canvas_element_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh(
&self,
image: &HtmlCanvasElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlCanvasElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlCanvasElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_html_video_element_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh(
&self,
image: &HtmlVideoElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &HtmlVideoElement,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HtmlVideoElement
impl CanvasRenderingContext2d[src]
pub fn draw_image_with_image_bitmap_and_sw_and_sh_and_dx_and_dy_and_dw_and_dh(
&self,
image: &ImageBitmap,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>[src]
&self,
image: &ImageBitmap,
sx: f64,
sy: f64,
sw: f64,
sh: f64,
dx: f64,
dy: f64,
dw: f64,
dh: f64
) -> Result<(), JsValue>
The drawImage() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageBitmap
impl CanvasRenderingContext2d[src]
pub fn begin_path(&self)[src]
The beginPath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn clip(&self)[src]
The clip() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn clip_with_canvas_winding_rule(&self, winding: CanvasWindingRule)[src]
The clip() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule
impl CanvasRenderingContext2d[src]
pub fn clip_with_path_2d(&self, path: &Path2d)[src]
The clip() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d
impl CanvasRenderingContext2d[src]
pub fn clip_with_path_2d_and_winding(
&self,
path: &Path2d,
winding: CanvasWindingRule
)[src]
&self,
path: &Path2d,
winding: CanvasWindingRule
)
The clip() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule, Path2d
impl CanvasRenderingContext2d[src]
pub fn fill(&self)[src]
The fill() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn fill_with_canvas_winding_rule(&self, winding: CanvasWindingRule)[src]
The fill() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule
impl CanvasRenderingContext2d[src]
pub fn fill_with_path_2d(&self, path: &Path2d)[src]
The fill() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d
impl CanvasRenderingContext2d[src]
pub fn fill_with_path_2d_and_winding(
&self,
path: &Path2d,
winding: CanvasWindingRule
)[src]
&self,
path: &Path2d,
winding: CanvasWindingRule
)
The fill() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule, Path2d
impl CanvasRenderingContext2d[src]
pub fn is_point_in_path_with_f64(&self, x: f64, y: f64) -> bool[src]
The isPointInPath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn is_point_in_path_with_f64_and_canvas_winding_rule(
&self,
x: f64,
y: f64,
winding: CanvasWindingRule
) -> bool[src]
&self,
x: f64,
y: f64,
winding: CanvasWindingRule
) -> bool
The isPointInPath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule
impl CanvasRenderingContext2d[src]
pub fn is_point_in_path_with_path_2d_and_f64(
&self,
path: &Path2d,
x: f64,
y: f64
) -> bool[src]
&self,
path: &Path2d,
x: f64,
y: f64
) -> bool
The isPointInPath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d
impl CanvasRenderingContext2d[src]
pub fn is_point_in_path_with_path_2d_and_f64_and_winding(
&self,
path: &Path2d,
x: f64,
y: f64,
winding: CanvasWindingRule
) -> bool[src]
&self,
path: &Path2d,
x: f64,
y: f64,
winding: CanvasWindingRule
) -> bool
The isPointInPath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule, Path2d
impl CanvasRenderingContext2d[src]
pub fn is_point_in_stroke_with_x_and_y(&self, x: f64, y: f64) -> bool[src]
The isPointInStroke() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn is_point_in_stroke_with_path_and_x_and_y(
&self,
path: &Path2d,
x: f64,
y: f64
) -> bool[src]
&self,
path: &Path2d,
x: f64,
y: f64
) -> bool
The isPointInStroke() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d
impl CanvasRenderingContext2d[src]
pub fn stroke(&self)[src]
The stroke() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn stroke_with_path(&self, path: &Path2d)[src]
The stroke() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d
impl CanvasRenderingContext2d[src]
pub fn create_linear_gradient(
&self,
x0: f64,
y0: f64,
x1: f64,
y1: f64
) -> CanvasGradient[src]
&self,
x0: f64,
y0: f64,
x1: f64,
y1: f64
) -> CanvasGradient
The createLinearGradient() method
This API requires the following crate features to be activated: CanvasGradient, CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn create_pattern_with_html_image_element(
&self,
image: &HtmlImageElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>[src]
&self,
image: &HtmlImageElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>
The createPattern() method
This API requires the following crate features to be activated: CanvasPattern, CanvasRenderingContext2d, HtmlImageElement
impl CanvasRenderingContext2d[src]
pub fn create_pattern_with_svg_image_element(
&self,
image: &SvgImageElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>[src]
&self,
image: &SvgImageElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>
The createPattern() method
This API requires the following crate features to be activated: CanvasPattern, CanvasRenderingContext2d, SvgImageElement
impl CanvasRenderingContext2d[src]
pub fn create_pattern_with_html_canvas_element(
&self,
image: &HtmlCanvasElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>[src]
&self,
image: &HtmlCanvasElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>
The createPattern() method
This API requires the following crate features to be activated: CanvasPattern, CanvasRenderingContext2d, HtmlCanvasElement
impl CanvasRenderingContext2d[src]
pub fn create_pattern_with_html_video_element(
&self,
image: &HtmlVideoElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>[src]
&self,
image: &HtmlVideoElement,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>
The createPattern() method
This API requires the following crate features to be activated: CanvasPattern, CanvasRenderingContext2d, HtmlVideoElement
impl CanvasRenderingContext2d[src]
pub fn create_pattern_with_image_bitmap(
&self,
image: &ImageBitmap,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>[src]
&self,
image: &ImageBitmap,
repetition: &str
) -> Result<Option<CanvasPattern>, JsValue>
The createPattern() method
This API requires the following crate features to be activated: CanvasPattern, CanvasRenderingContext2d, ImageBitmap
impl CanvasRenderingContext2d[src]
pub fn create_radial_gradient(
&self,
x0: f64,
y0: f64,
r0: f64,
x1: f64,
y1: f64,
r1: f64
) -> Result<CanvasGradient, JsValue>[src]
&self,
x0: f64,
y0: f64,
r0: f64,
x1: f64,
y1: f64,
r1: f64
) -> Result<CanvasGradient, JsValue>
The createRadialGradient() method
This API requires the following crate features to be activated: CanvasGradient, CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn stroke_style(&self) -> JsValue[src]
The strokeStyle getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_stroke_style(&self, stroke_style: &JsValue)[src]
The strokeStyle setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn fill_style(&self) -> JsValue[src]
The fillStyle getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_fill_style(&self, fill_style: &JsValue)[src]
The fillStyle setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn filter(&self) -> String[src]
The filter getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_filter(&self, filter: &str)[src]
The filter setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn add_hit_region(&self) -> Result<(), JsValue>[src]
The addHitRegion() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn add_hit_region_with_options(
&self,
options: &HitRegionOptions
) -> Result<(), JsValue>[src]
&self,
options: &HitRegionOptions
) -> Result<(), JsValue>
The addHitRegion() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, HitRegionOptions
impl CanvasRenderingContext2d[src]
pub fn clear_hit_regions(&self)[src]
The clearHitRegions() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn remove_hit_region(&self, id: &str)[src]
The removeHitRegion() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn create_image_data_with_sw_and_sh(
&self,
sw: f64,
sh: f64
) -> Result<ImageData, JsValue>[src]
&self,
sw: f64,
sh: f64
) -> Result<ImageData, JsValue>
The createImageData() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageData
impl CanvasRenderingContext2d[src]
pub fn create_image_data_with_imagedata(
&self,
imagedata: &ImageData
) -> Result<ImageData, JsValue>[src]
&self,
imagedata: &ImageData
) -> Result<ImageData, JsValue>
The createImageData() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageData
impl CanvasRenderingContext2d[src]
pub fn get_image_data(
&self,
sx: f64,
sy: f64,
sw: f64,
sh: f64
) -> Result<ImageData, JsValue>[src]
&self,
sx: f64,
sy: f64,
sw: f64,
sh: f64
) -> Result<ImageData, JsValue>
The getImageData() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageData
impl CanvasRenderingContext2d[src]
pub fn put_image_data(
&self,
imagedata: &ImageData,
dx: f64,
dy: f64
) -> Result<(), JsValue>[src]
&self,
imagedata: &ImageData,
dx: f64,
dy: f64
) -> Result<(), JsValue>
The putImageData() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageData
impl CanvasRenderingContext2d[src]
pub fn put_image_data_with_dirty_x_and_dirty_y_and_dirty_width_and_dirty_height(
&self,
imagedata: &ImageData,
dx: f64,
dy: f64,
dirty_x: f64,
dirty_y: f64,
dirty_width: f64,
dirty_height: f64
) -> Result<(), JsValue>[src]
&self,
imagedata: &ImageData,
dx: f64,
dy: f64,
dirty_x: f64,
dirty_y: f64,
dirty_width: f64,
dirty_height: f64
) -> Result<(), JsValue>
The putImageData() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageData
impl CanvasRenderingContext2d[src]
pub fn image_smoothing_enabled(&self) -> bool[src]
The imageSmoothingEnabled getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_image_smoothing_enabled(&self, image_smoothing_enabled: bool)[src]
The imageSmoothingEnabled setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn get_line_dash(&self) -> Array[src]
The getLineDash() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_line_dash(&self, segments: &JsValue) -> Result<(), JsValue>[src]
The setLineDash() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn line_width(&self) -> f64[src]
The lineWidth getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_line_width(&self, line_width: f64)[src]
The lineWidth setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn line_cap(&self) -> String[src]
The lineCap getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_line_cap(&self, line_cap: &str)[src]
The lineCap setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn line_join(&self) -> String[src]
The lineJoin getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_line_join(&self, line_join: &str)[src]
The lineJoin setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn miter_limit(&self) -> f64[src]
The miterLimit getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_miter_limit(&self, miter_limit: f64)[src]
The miterLimit setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn line_dash_offset(&self) -> f64[src]
The lineDashOffset getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_line_dash_offset(&self, line_dash_offset: f64)[src]
The lineDashOffset setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn arc(
&self,
x: f64,
y: f64,
radius: f64,
start_angle: f64,
end_angle: f64
) -> Result<(), JsValue>[src]
&self,
x: f64,
y: f64,
radius: f64,
start_angle: f64,
end_angle: f64
) -> Result<(), JsValue>
The arc() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn arc_with_anticlockwise(
&self,
x: f64,
y: f64,
radius: f64,
start_angle: f64,
end_angle: f64,
anticlockwise: bool
) -> Result<(), JsValue>[src]
&self,
x: f64,
y: f64,
radius: f64,
start_angle: f64,
end_angle: f64,
anticlockwise: bool
) -> Result<(), JsValue>
The arc() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn arc_to(
&self,
x1: f64,
y1: f64,
x2: f64,
y2: f64,
radius: f64
) -> Result<(), JsValue>[src]
&self,
x1: f64,
y1: f64,
x2: f64,
y2: f64,
radius: f64
) -> Result<(), JsValue>
The arcTo() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn bezier_curve_to(
&self,
cp1x: f64,
cp1y: f64,
cp2x: f64,
cp2y: f64,
x: f64,
y: f64
)[src]
&self,
cp1x: f64,
cp1y: f64,
cp2x: f64,
cp2y: f64,
x: f64,
y: f64
)
The bezierCurveTo() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn close_path(&self)[src]
The closePath() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn ellipse(
&self,
x: f64,
y: f64,
radius_x: f64,
radius_y: f64,
rotation: f64,
start_angle: f64,
end_angle: f64
) -> Result<(), JsValue>[src]
&self,
x: f64,
y: f64,
radius_x: f64,
radius_y: f64,
rotation: f64,
start_angle: f64,
end_angle: f64
) -> Result<(), JsValue>
The ellipse() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn ellipse_with_anticlockwise(
&self,
x: f64,
y: f64,
radius_x: f64,
radius_y: f64,
rotation: f64,
start_angle: f64,
end_angle: f64,
anticlockwise: bool
) -> Result<(), JsValue>[src]
&self,
x: f64,
y: f64,
radius_x: f64,
radius_y: f64,
rotation: f64,
start_angle: f64,
end_angle: f64,
anticlockwise: bool
) -> Result<(), JsValue>
The ellipse() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn line_to(&self, x: f64, y: f64)[src]
The lineTo() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn move_to(&self, x: f64, y: f64)[src]
The moveTo() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn quadratic_curve_to(&self, cpx: f64, cpy: f64, x: f64, y: f64)[src]
The quadraticCurveTo() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn rect(&self, x: f64, y: f64, w: f64, h: f64)[src]
The rect() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn clear_rect(&self, x: f64, y: f64, w: f64, h: f64)[src]
The clearRect() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn fill_rect(&self, x: f64, y: f64, w: f64, h: f64)[src]
The fillRect() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn stroke_rect(&self, x: f64, y: f64, w: f64, h: f64)[src]
The strokeRect() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn shadow_offset_x(&self) -> f64[src]
The shadowOffsetX getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_shadow_offset_x(&self, shadow_offset_x: f64)[src]
The shadowOffsetX setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn shadow_offset_y(&self) -> f64[src]
The shadowOffsetY getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_shadow_offset_y(&self, shadow_offset_y: f64)[src]
The shadowOffsetY setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn shadow_blur(&self) -> f64[src]
The shadowBlur getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_shadow_blur(&self, shadow_blur: f64)[src]
The shadowBlur setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn shadow_color(&self) -> String[src]
The shadowColor getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_shadow_color(&self, shadow_color: &str)[src]
The shadowColor setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn restore(&self)[src]
The restore() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn save(&self)[src]
The save() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn fill_text(&self, text: &str, x: f64, y: f64) -> Result<(), JsValue>[src]
The fillText() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn fill_text_with_max_width(
&self,
text: &str,
x: f64,
y: f64,
max_width: f64
) -> Result<(), JsValue>[src]
&self,
text: &str,
x: f64,
y: f64,
max_width: f64
) -> Result<(), JsValue>
The fillText() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn measure_text(&self, text: &str) -> Result<TextMetrics, JsValue>[src]
The measureText() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, TextMetrics
impl CanvasRenderingContext2d[src]
pub fn stroke_text(&self, text: &str, x: f64, y: f64) -> Result<(), JsValue>[src]
The strokeText() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn stroke_text_with_max_width(
&self,
text: &str,
x: f64,
y: f64,
max_width: f64
) -> Result<(), JsValue>[src]
&self,
text: &str,
x: f64,
y: f64,
max_width: f64
) -> Result<(), JsValue>
The strokeText() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn font(&self) -> String[src]
The font getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_font(&self, font: &str)[src]
The font setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn text_align(&self) -> String[src]
The textAlign getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_text_align(&self, text_align: &str)[src]
The textAlign setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn text_baseline(&self) -> String[src]
The textBaseline getter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_text_baseline(&self, text_baseline: &str)[src]
The textBaseline setter
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn reset_transform(&self) -> Result<(), JsValue>[src]
The resetTransform() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn rotate(&self, angle: f64) -> Result<(), JsValue>[src]
The rotate() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn scale(&self, x: f64, y: f64) -> Result<(), JsValue>[src]
The scale() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn set_transform(
&self,
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
f: f64
) -> Result<(), JsValue>[src]
&self,
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
f: f64
) -> Result<(), JsValue>
The setTransform() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn transform(
&self,
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
f: f64
) -> Result<(), JsValue>[src]
&self,
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
f: f64
) -> Result<(), JsValue>
The transform() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn translate(&self, x: f64, y: f64) -> Result<(), JsValue>[src]
The translate() method
This API requires the following crate features to be activated: CanvasRenderingContext2d
impl CanvasRenderingContext2d[src]
pub fn draw_custom_focus_ring(&self, element: &Element) -> bool[src]
The drawCustomFocusRing() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Element
impl CanvasRenderingContext2d[src]
pub fn draw_focus_if_needed(&self, element: &Element) -> Result<(), JsValue>[src]
The drawFocusIfNeeded() method
This API requires the following crate features to be activated: CanvasRenderingContext2d, Element
impl CanvasRenderingContext2d[src]
pub const DRAWWINDOW_DRAW_CARET: u32[src]
impl CanvasRenderingContext2d[src]
pub const DRAWWINDOW_DO_NOT_FLUSH: u32[src]
impl CanvasRenderingContext2d[src]
pub const DRAWWINDOW_DRAW_VIEW: u32[src]
impl CanvasRenderingContext2d[src]
pub const DRAWWINDOW_USE_WIDGET_LAYERS: u32[src]
impl CanvasRenderingContext2d[src]
pub const DRAWWINDOW_ASYNC_DECODE_IMAGES: u32[src]
Trait Implementations
impl Clone for CanvasRenderingContext2d[src]
fn clone(&self) -> CanvasRenderingContext2d[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl AsRef<JsValue> for CanvasRenderingContext2d[src]
impl AsRef<Object> for CanvasRenderingContext2d[src]
impl From<JsValue> for CanvasRenderingContext2d[src]
fn from(obj: JsValue) -> CanvasRenderingContext2d[src]
impl From<CanvasRenderingContext2d> for JsValue[src]
fn from(obj: CanvasRenderingContext2d) -> JsValue[src]
impl From<CanvasRenderingContext2d> for Object[src]
fn from(obj: CanvasRenderingContext2d) -> Object[src]
impl Debug for CanvasRenderingContext2d[src]
impl Deref for CanvasRenderingContext2d[src]
impl FromWasmAbi for CanvasRenderingContext2d[src]
type Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more
unsafe fn from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self[src]
impl IntoWasmAbi for CanvasRenderingContext2d[src]
type Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi[src]
impl<'a> IntoWasmAbi for &'a CanvasRenderingContext2d[src]
type Abi = <&'a JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi[src]
impl WasmDescribe for CanvasRenderingContext2d[src]
impl OptionFromWasmAbi for CanvasRenderingContext2d[src]
impl OptionIntoWasmAbi for CanvasRenderingContext2d[src]
impl<'a> OptionIntoWasmAbi for &'a CanvasRenderingContext2d[src]
impl RefFromWasmAbi for CanvasRenderingContext2d[src]
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self are recovered from.
type Anchor = ManuallyDrop<CanvasRenderingContext2d>
The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more
unsafe fn ref_from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self::Anchor[src]
impl JsCast for CanvasRenderingContext2d[src]
fn instanceof(val: &JsValue) -> bool[src]
fn unchecked_from_js(val: JsValue) -> Self[src]
fn unchecked_from_js_ref(val: &JsValue) -> &Self[src]
fn is_instance_of<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
Test whether this JS value is an instance of the type T. Read more
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast, [src]
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast, [src]
T: JsCast,
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn unchecked_into<T>(self) -> T where
T: JsCast, [src]
T: JsCast,
Performs a zero-cost unchecked cast into the specified type. Read more
fn unchecked_ref<T>(&self) -> &T where
T: JsCast, [src]
T: JsCast,
Performs a zero-cost unchecked cast into a reference to the specified type. Read more
Auto Trait Implementations
impl !Send for CanvasRenderingContext2d
impl !Sync for CanvasRenderingContext2d
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, [src]
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi