Struct aws_sdk_codeartifact::model::PackageDependency
source · [−]#[non_exhaustive]pub struct PackageDependency {
pub namespace: Option<String>,
pub package: Option<String>,
pub dependency_type: Option<String>,
pub version_requirement: Option<String>,
}
Expand description
Details about a package dependency.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.namespace: Option<String>
The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its
groupId
. -
The namespace of an npm package is its
scope
. -
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
package: Option<String>
The name of the package that this package depends on.
dependency_type: Option<String>
The type of a package dependency. The possible values depend on the package type. Example types are compile
, runtime
, and test
for Maven packages, and dev
, prod
, and optional
for npm packages.
version_requirement: Option<String>
The required version, or version range, of the package that this package depends on. The version format is specific to the package type. For example, the following are possible valid required versions: 1.2.3
, ^2.3.4
, or 4.x
.
Implementations
sourceimpl PackageDependency
impl PackageDependency
sourcepub fn namespace(&self) -> Option<&str>
pub fn namespace(&self) -> Option<&str>
The namespace of the package. The package component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package is its
groupId
. -
The namespace of an npm package is its
scope
. -
A Python package does not contain a corresponding component, so Python packages do not have a namespace.
sourcepub fn dependency_type(&self) -> Option<&str>
pub fn dependency_type(&self) -> Option<&str>
The type of a package dependency. The possible values depend on the package type. Example types are compile
, runtime
, and test
for Maven packages, and dev
, prod
, and optional
for npm packages.
sourcepub fn version_requirement(&self) -> Option<&str>
pub fn version_requirement(&self) -> Option<&str>
The required version, or version range, of the package that this package depends on. The version format is specific to the package type. For example, the following are possible valid required versions: 1.2.3
, ^2.3.4
, or 4.x
.
sourceimpl PackageDependency
impl PackageDependency
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PackageDependency
Trait Implementations
sourceimpl Clone for PackageDependency
impl Clone for PackageDependency
sourcefn clone(&self) -> PackageDependency
fn clone(&self) -> PackageDependency
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PackageDependency
impl Debug for PackageDependency
sourceimpl PartialEq<PackageDependency> for PackageDependency
impl PartialEq<PackageDependency> for PackageDependency
sourcefn eq(&self, other: &PackageDependency) -> bool
fn eq(&self, other: &PackageDependency) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PackageDependency) -> bool
fn ne(&self, other: &PackageDependency) -> bool
This method tests for !=
.
impl StructuralPartialEq for PackageDependency
Auto Trait Implementations
impl RefUnwindSafe for PackageDependency
impl Send for PackageDependency
impl Sync for PackageDependency
impl Unpin for PackageDependency
impl UnwindSafe for PackageDependency
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more