Union alpm_sys::_alpm_question_t
source · #[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§
source§impl Clone for _alpm_question_t
impl Clone for _alpm_question_t
source§fn clone(&self) -> _alpm_question_t
fn clone(&self) -> _alpm_question_t
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 moreimpl Copy for _alpm_question_t
Auto Trait Implementations§
impl RefUnwindSafe for _alpm_question_t
impl !Send for _alpm_question_t
impl !Sync for _alpm_question_t
impl Unpin for _alpm_question_t
impl UnwindSafe for _alpm_question_t
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