Enum piet_common::kurbo::SvgParseError
pub enum SvgParseError {
Wrong,
UnexpectedEof,
UnknownCommand(char),
}Expand description
An error which can be returned when parsing an SVG.
Variants
Wrong
A number was expected.
UnexpectedEof
The input string ended while still expecting input.
UnknownCommand(char)
Encountered an unknown command letter.
Trait Implementations
impl Debug for SvgParseError
impl Debug for SvgParseError
impl Display for SvgParseError
impl Display for SvgParseError
impl Error for SvgParseError
impl Error for SvgParseError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations
impl RefUnwindSafe for SvgParseError
impl Send for SvgParseError
impl Sync for SvgParseError
impl Unpin for SvgParseError
impl UnwindSafe for SvgParseError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
sourcefn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
sourceimpl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
sourcefn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.