Enum gtk4::PrintError 
source · #[non_exhaustive]pub enum PrintError {
    General,
    InternalError,
    Nomem,
    InvalidFile,
}Expand description
Error codes that identify various errors that can occur while using the GTK printing support.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
General
An unspecified error occurred.
InternalError
An internal error occurred.
Nomem
A memory allocation failed.
InvalidFile
An error occurred while loading a page setup or paper size from a key file.
Trait Implementations§
source§impl Clone for PrintError
 
impl Clone for PrintError
source§fn clone(&self) -> PrintError
 
fn clone(&self) -> PrintError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for PrintError
 
impl Debug for PrintError
source§impl Display for PrintError
 
impl Display for PrintError
source§impl ErrorDomain for PrintError
 
impl ErrorDomain for PrintError
source§impl From<PrintError> for Value
 
impl From<PrintError> for Value
source§fn from(v: PrintError) -> Self
 
fn from(v: PrintError) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for PrintError
 
impl<'a> FromValue<'a> for PrintError
§type Checker = GenericValueTypeChecker<PrintError>
 
type Checker = GenericValueTypeChecker<PrintError>
Value type checker.
source§unsafe fn from_value(value: &'a Value) -> Self
 
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a 
Value. Read moresource§impl HasParamSpec for PrintError
 
impl HasParamSpec for PrintError
type ParamSpec = ParamSpecEnum
§type SetValue = PrintError
 
type SetValue = PrintError
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: PrintError) -> ParamSpecEnumBuilder<'_, PrintError>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for PrintError
 
impl Hash for PrintError
source§impl Ord for PrintError
 
impl Ord for PrintError
source§fn cmp(&self, other: &PrintError) -> Ordering
 
fn cmp(&self, other: &PrintError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<PrintError> for PrintError
 
impl PartialEq<PrintError> for PrintError
source§fn eq(&self, other: &PrintError) -> bool
 
fn eq(&self, other: &PrintError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<PrintError> for PrintError
 
impl PartialOrd<PrintError> for PrintError
source§fn partial_cmp(&self, other: &PrintError) -> Option<Ordering>
 
fn partial_cmp(&self, other: &PrintError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moresource§impl StaticType for PrintError
 
impl StaticType for PrintError
source§fn static_type() -> Type
 
fn static_type() -> Type
Returns the type identifier of 
Self.source§impl ToValue for PrintError
 
impl ToValue for PrintError
source§impl ValueType for PrintError
 
impl ValueType for PrintError
§type Type = PrintError
 
type Type = PrintError
Type to get the 
Type from. Read moreimpl Copy for PrintError
impl Eq for PrintError
impl StructuralEq for PrintError
impl StructuralPartialEq for PrintError
Auto Trait Implementations§
impl RefUnwindSafe for PrintError
impl Send for PrintError
impl Sync for PrintError
impl Unpin for PrintError
impl UnwindSafe for PrintError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoClosureReturnValue for Twhere
    T: Into<Value>,
 
impl<T> IntoClosureReturnValue for Twhere T: Into<Value>,
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> PropertyGet for Twhere
    T: HasParamSpec,
 
impl<T> PropertyGet for Twhere T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
    T: StaticType,
 
impl<T> StaticTypeExt for Twhere T: StaticType,
source§fn ensure_type()
 
fn ensure_type()
Ensures that the type has been registered with the type system.
source§impl<T> ToSendValue for Twhere
    T: Send + ToValue + ?Sized,
 
impl<T> ToSendValue for Twhere T: Send + ToValue + ?Sized,
source§fn to_send_value(&self) -> SendValue
 
fn to_send_value(&self) -> SendValue
Returns a 
SendValue clone of self.