[][src]Struct web_sys::CanvasRenderingContext2d

#[repr(transparent)]
pub struct CanvasRenderingContext2d { /* fields omitted */ }

The CanvasRenderingContext2D object

MDN Documentation

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]

The drawWindow() method

MDN Documentation

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]

The drawWindow() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The globalCompositeOperation setter

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

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]

The drawImage() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d, ImageBitmap

impl CanvasRenderingContext2d[src]

pub fn begin_path(&self)[src]

The beginPath() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn clip(&self)[src]

The clip() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The clip() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d, CanvasWindingRule, Path2d

impl CanvasRenderingContext2d[src]

pub fn fill(&self)[src]

The fill() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The fill() method

MDN Documentation

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

MDN Documentation

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]

The isPointInPath() method

MDN Documentation

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]

The isPointInPath() method

MDN Documentation

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]

The isPointInPath() method

MDN Documentation

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

MDN Documentation

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]

The isPointInStroke() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d, Path2d

impl CanvasRenderingContext2d[src]

pub fn stroke(&self)[src]

The stroke() method

MDN Documentation

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

MDN Documentation

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]

The createLinearGradient() method

MDN Documentation

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]

The createPattern() method

MDN Documentation

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]

The createPattern() method

MDN Documentation

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]

The createPattern() method

MDN Documentation

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]

The createPattern() method

MDN Documentation

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]

The createPattern() method

MDN Documentation

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]

The createRadialGradient() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn fill_style(&self) -> JsValue[src]

The fillStyle getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn filter(&self) -> String[src]

The filter getter

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The addHitRegion() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The createImageData() method

MDN Documentation

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]

The createImageData() method

MDN Documentation

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]

The getImageData() method

MDN Documentation

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]

The putImageData() method

MDN Documentation

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]

The putImageData() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn line_width(&self) -> f64[src]

The lineWidth getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn line_cap(&self) -> String[src]

The lineCap getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn line_join(&self) -> String[src]

The lineJoin getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn miter_limit(&self) -> f64[src]

The miterLimit getter

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The arc() method

MDN Documentation

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]

The arc() method

MDN Documentation

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]

The arcTo() method

MDN Documentation

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]

The bezierCurveTo() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn close_path(&self)[src]

The closePath() method

MDN Documentation

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]

The ellipse() method

MDN Documentation

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]

The ellipse() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn shadow_blur(&self) -> f64[src]

The shadowBlur getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn shadow_color(&self) -> String[src]

The shadowColor getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn restore(&self)[src]

The restore() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn save(&self)[src]

The save() method

MDN Documentation

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

MDN Documentation

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]

The fillText() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The strokeText() method

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn font(&self) -> String[src]

The font getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn text_align(&self) -> String[src]

The textAlign getter

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d

impl CanvasRenderingContext2d[src]

pub fn text_baseline(&self) -> String[src]

The textBaseline getter

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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]

The setTransform() method

MDN Documentation

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]

The transform() method

MDN Documentation

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

MDN Documentation

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

MDN Documentation

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

MDN Documentation

This API requires the following crate features to be activated: CanvasRenderingContext2d, Element

impl CanvasRenderingContext2d[src]

impl CanvasRenderingContext2d[src]

impl CanvasRenderingContext2d[src]

impl CanvasRenderingContext2d[src]

impl CanvasRenderingContext2d[src]

Trait Implementations

impl AsRef<JsValue> for CanvasRenderingContext2d[src]

impl AsRef<Object> for CanvasRenderingContext2d[src]

impl From<JsValue> for CanvasRenderingContext2d[src]

impl From<CanvasRenderingContext2d> for JsValue[src]

impl From<CanvasRenderingContext2d> for Object[src]

impl Clone for CanvasRenderingContext2d[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CanvasRenderingContext2d[src]

impl Deref for CanvasRenderingContext2d[src]

type Target = Object

The resulting type after dereferencing.

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

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

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

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

impl JsCast for CanvasRenderingContext2d[src]

fn is_instance_of<T>(&self) -> bool where
    T: JsCast
[src]

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]

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]

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]

Performs a zero-cost unchecked cast into the specified type. Read more

fn unchecked_ref<T>(&self) -> &T where
    T: JsCast
[src]

Performs a zero-cost unchecked cast into a reference to the specified type. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi