[][src]Struct maven_toolbox::ArtifactFqn

pub struct ArtifactFqn {
    pub group_id: Option<String>,
    pub artifact_id: Option<String>,
    pub version: Option<String>,
    pub packaging: Option<String>,
    pub classifier: Option<String>,
}

Fields

group_id: Option<String>artifact_id: Option<String>version: Option<String>packaging: Option<String>classifier: Option<String>

Implementations

impl ArtifactFqn[src]

pub fn new(
    group_id: &str,
    artifact_id: &str,
    version: &str,
    packaging: &str,
    classifier: &str
) -> Self
[src]

pub fn pom(group_id: &str, artifact_id: &str, version: &str) -> Self[src]

pub fn interpolate(&self, properties: &HashMap<String, String>) -> Self[src]

pub fn with_packaging(&self, packaging: &str) -> Self[src]

pub fn same_ga(&self, other: &Self) -> bool[src]

pub fn normalize(self, parent: &Self, default_packaging: &str) -> Self[src]

Trait Implementations

impl Clone for ArtifactFqn[src]

impl Debug for ArtifactFqn[src]

impl Default for ArtifactFqn[src]

impl Display for ArtifactFqn[src]

impl Eq for ArtifactFqn[src]

impl Hash for ArtifactFqn[src]

impl PartialEq<ArtifactFqn> for ArtifactFqn[src]

impl StructuralEq for ArtifactFqn[src]

impl StructuralPartialEq for ArtifactFqn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.