pub struct MavenArtifactRepo { /* private fields */ }Expand description
A repository from which Java artifacts can be fetched.
Trait Implementations§
Source§impl Clone for MavenArtifactRepo
impl Clone for MavenArtifactRepo
Source§fn clone(&self) -> MavenArtifactRepo
fn clone(&self) -> MavenArtifactRepo
Returns a duplicate 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 moreSource§impl Debug for MavenArtifactRepo
impl Debug for MavenArtifactRepo
Source§impl From<&[&str]> for MavenArtifactRepo
impl From<&[&str]> for MavenArtifactRepo
Source§fn from(slice: &[&str]) -> MavenArtifactRepo
fn from(slice: &[&str]) -> MavenArtifactRepo
Converts to this type from the input type.
Source§impl<'a> From<&'a str> for MavenArtifactRepo
impl<'a> From<&'a str> for MavenArtifactRepo
Source§fn from(string: &'a str) -> MavenArtifactRepo
fn from(string: &'a str) -> MavenArtifactRepo
Convenience for creating a MavenArtifactRepo.
The &str should be formed like following:
id::uri
E.g:
MyAlterRepo::https://myalterrepo.io
Source§impl From<String> for MavenArtifactRepo
impl From<String> for MavenArtifactRepo
Source§fn from(string: String) -> MavenArtifactRepo
fn from(string: String) -> MavenArtifactRepo
Convenience for creating a MavenArtifactRepo.
The &str should be formed like following:
id::uri
E.g:
MyAlterRepo::https://myalterrepo.io
Auto Trait Implementations§
impl Freeze for MavenArtifactRepo
impl RefUnwindSafe for MavenArtifactRepo
impl Send for MavenArtifactRepo
impl Sync for MavenArtifactRepo
impl Unpin for MavenArtifactRepo
impl UnwindSafe for MavenArtifactRepo
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