Enum gtk4::PrintOperationResult [−][src]
#[non_exhaustive]
pub enum PrintOperationResult {
Error,
Apply,
Cancel,
InProgress,
// some variants omitted
}
Expand description
The result of a print operation.
A value of this type is returned by PrintOperationExt::run()
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
An error has occurred.
The print settings should be stored.
The print operation has been canceled, the print settings should not be stored.
The print operation is not complete yet. This value will only be returned when running asynchronously.
Trait Implementations
type Checker = GenericValueTypeChecker<Self>
type Checker = GenericValueTypeChecker<Self>
Value type checker.
Get the contained value from a Value
. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for PrintOperationResult
impl Send for PrintOperationResult
impl Sync for PrintOperationResult
impl Unpin for PrintOperationResult
impl UnwindSafe for PrintOperationResult
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a SendValue
clone of self
.