s_Dataiterator

Struct s_Dataiterator 

Source
#[repr(C)]
pub struct s_Dataiterator {
Show 29 fields pub state: c_int, pub flags: c_int, pub pool: *mut Pool, pub repo: *mut s_Repo, pub data: *mut s_Repodata, pub dp: *mut c_uchar, pub ddp: *mut c_uchar, pub idp: *mut Id, pub keyp: *mut Id, pub key: *mut s_Repokey, pub kv: KeyValue, pub matcher: Datamatcher, pub keyname: Id, pub repodataid: Id, pub solvid: Id, pub repoid: Id, pub keynames: [Id; 4], pub nkeynames: c_int, pub rootlevel: c_int, pub parents: [s_Dataiterator_di_parent; 3], pub nparents: c_int, pub vert_ddp: *mut c_uchar, pub vert_off: Id, pub vert_len: Id, pub vert_storestate: Id, pub dupstr: *mut c_char, pub dupstrn: c_int, pub keyskip: *mut Id, pub oldkeyskip: *mut Id,
}

Fields§

§state: c_int§flags: c_int§pool: *mut Pool§repo: *mut s_Repo§data: *mut s_Repodata§dp: *mut c_uchar§ddp: *mut c_uchar§idp: *mut Id§keyp: *mut Id§key: *mut s_Repokey§kv: KeyValue§matcher: Datamatcher§keyname: Id§repodataid: Id§solvid: Id§repoid: Id§keynames: [Id; 4]§nkeynames: c_int§rootlevel: c_int§parents: [s_Dataiterator_di_parent; 3]§nparents: c_int§vert_ddp: *mut c_uchar§vert_off: Id§vert_len: Id§vert_storestate: Id§dupstr: *mut c_char§dupstrn: c_int§keyskip: *mut Id§oldkeyskip: *mut Id

Trait Implementations§

Source§

impl Clone for s_Dataiterator

Source§

fn clone(&self) -> s_Dataiterator

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for s_Dataiterator

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for s_Dataiterator

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.