#[repr(C)]
pub union _alpm_question_t {
    pub type_: alpm_question_type_t,
    pub any: alpm_question_any_t,
    pub install_ignorepkg: alpm_question_install_ignorepkg_t,
    pub replace: alpm_question_replace_t,
    pub conflict: alpm_question_conflict_t,
    pub corrupted: alpm_question_corrupted_t,
    pub remove_pkgs: alpm_question_remove_pkgs_t,
    pub select_provider: alpm_question_select_provider_t,
    pub import_key: alpm_question_import_key_t,
}
Expand description

Questions. This is an union passed to the callback that allows the frontend to know which type of question was triggered (via type). It is then possible to typecast the pointer to the right structure, or use the union field, in order to access question-specific data.

Fields

type_: alpm_question_type_t

The type of question. It’s always safe to access this.

any: alpm_question_any_t

A question that can represent any question. It’s always safe to access this.

install_ignorepkg: alpm_question_install_ignorepkg_t

Should target in ignorepkg be installed anyway?

replace: alpm_question_replace_t

Should a package be replaced?

conflict: alpm_question_conflict_t

Should a conflicting package be removed?

corrupted: alpm_question_corrupted_t

Should a corrupted package be deleted?

remove_pkgs: alpm_question_remove_pkgs_t

Should unresolvable targets be removed from the transaction?

select_provider: alpm_question_select_provider_t

Provider selection

import_key: alpm_question_import_key_t

Should a key be imported?

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.