Trait sourceview5::prelude::ErrorDomain

source ·
pub trait ErrorDomain: Copy {
    // Required methods
    fn domain() -> Quark;
    fn code(self) -> i32;
    fn from(code: i32) -> Option<Self>
       where Self: Sized;
}
Expand description

GLib error domain.

This trait is implemented by error enums that represent error domains (types).

Required Methods§

source

fn domain() -> Quark

Returns the quark identifying the error domain.

As returned from g_some_error_quark.

source

fn code(self) -> i32

Gets the integer representation of the variant.

source

fn from(code: i32) -> Option<Self>
where Self: Sized,

Tries to convert an integer code to an enum variant.

By convention, the Failed variant, if present, is a catch-all, i.e. any unrecognized codes map to it.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ErrorDomain for GLError

source§

impl ErrorDomain for TextureError

source§

impl ErrorDomain for VulkanError

source§

impl ErrorDomain for SerializationError

source§

impl ErrorDomain for BuilderError

source§

impl ErrorDomain for ConstraintVflParserError

source§

impl ErrorDomain for CssParserError

source§

impl ErrorDomain for CssParserWarning

source§

impl ErrorDomain for DialogError

source§

impl ErrorDomain for FileChooserError

source§

impl ErrorDomain for IconThemeError

source§

impl ErrorDomain for PrintError

source§

impl ErrorDomain for RecentManagerError

source§

impl ErrorDomain for PixbufError

source§

impl ErrorDomain for IOErrorEnum

source§

impl ErrorDomain for ResolverError

source§

impl ErrorDomain for ResourceError

source§

impl ErrorDomain for TlsError

Implementors§