#[repr(C)]pub struct _alpm_question_select_provider_t {
pub type_: alpm_question_type_t,
pub use_index: c_int,
pub providers: *mut alpm_list_t,
pub depend: *mut alpm_depend_t,
}
Expand description
Provider selection
Fields§
§type_: alpm_question_type_t
Type of question
use_index: c_int
Answer: which provider to use (index from providers)
providers: *mut alpm_list_t
List of alpm_pkg_t* as possible providers
depend: *mut alpm_depend_t
What providers provide for
Trait Implementations§
source§impl Clone for _alpm_question_select_provider_t
impl Clone for _alpm_question_select_provider_t
source§fn clone(&self) -> _alpm_question_select_provider_t
fn clone(&self) -> _alpm_question_select_provider_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_select_provider_t
Auto Trait Implementations§
impl RefUnwindSafe for _alpm_question_select_provider_t
impl !Send for _alpm_question_select_provider_t
impl !Sync for _alpm_question_select_provider_t
impl Unpin for _alpm_question_select_provider_t
impl UnwindSafe for _alpm_question_select_provider_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