anyrender_svg 0.9.0

Render SVGs with anyrender
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2023 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use thiserror::Error;

/// Triggered when there is an issue parsing user input.
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum Error {
    #[error("Error parsing svg: {0}")]
    Svg(#[from] usvg::Error),
}