[][src]Struct j4rs::MavenArtifact

pub struct MavenArtifact { /* fields omitted */ }

Represents an Artifact that can be fetched by a remote Maven repository. It can loaded and used by j4rs by calling the JVM::deploy_artifact method.

Trait Implementations

impl Clone for MavenArtifact[src]

impl Debug for MavenArtifact[src]

impl<'_, '_> From<&'_ [&'_ str]> for MavenArtifact[src]

impl<'_, '_> From<&'_ Vec<&'_ str>> for MavenArtifact[src]

impl<'a> From<&'a str> for MavenArtifact[src]

fn from(string: &'a str) -> MavenArtifact[src]

Convenience for creating a MavenArtifact.

The &str should be formed like following:

group:id:version:qualifier

E.g: io.github.astonbitecode:j4rs:0.5.1

impl From<String> for MavenArtifact[src]

fn from(string: String) -> MavenArtifact[src]

Convenience for creating a MavenArtifact.

The &str should be formed like following:

group:id:version:qualifier

E.g: io.github.astonbitecode:j4rs:0.5.1

impl<'_> From<Vec<&'_ str>> for MavenArtifact[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, 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.