pub struct BinaryPackageDependencySource<'file, 'data> {
pub package: &'file BinaryPackageControlFile<'data>,
pub field: BinaryDependency,
pub constraint: SingleDependency,
}Expand description
Describes the source of a dependency between binary packages.
Fields§
§package: &'file BinaryPackageControlFile<'data>The package the dependency came from.
field: BinaryDependencyThe control file field the dependency constraint came from.
constraint: SingleDependencyThe dependency constraint expression being satisfied.
Trait Implementations§
source§impl<'file, 'data> Clone for BinaryPackageDependencySource<'file, 'data>
impl<'file, 'data> Clone for BinaryPackageDependencySource<'file, 'data>
source§fn clone(&self) -> BinaryPackageDependencySource<'file, 'data>
fn clone(&self) -> BinaryPackageDependencySource<'file, 'data>
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 moreAuto Trait Implementations§
impl<'file, 'data> RefUnwindSafe for BinaryPackageDependencySource<'file, 'data>
impl<'file, 'data> Send for BinaryPackageDependencySource<'file, 'data>
impl<'file, 'data> Sync for BinaryPackageDependencySource<'file, 'data>
impl<'file, 'data> Unpin for BinaryPackageDependencySource<'file, 'data>
impl<'file, 'data> UnwindSafe for BinaryPackageDependencySource<'file, 'data>
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