[][src]Struct pkgutils::Repo

pub struct Repo { /* fields omitted */ }

Implementations

impl Repo[src]

pub fn new(target: &str) -> Repo[src]

pub fn sync(&self, file: &str) -> Result<String>[src]

pub fn signature(&self, file: &str) -> Result<String>[src]

pub fn clean(&self, package: &str) -> Result<String>[src]

pub fn create(&self, package: &str) -> Result<String>[src]

pub fn fetch_meta(&self, package: &str) -> Result<PackageMeta>[src]

pub fn fetch(&self, package: &str) -> Result<Package>[src]

pub fn extract(&self, package: &str) -> Result<String>[src]

pub fn add_remote(&mut self, remote: &str)[src]

Trait Implementations

impl Debug for Repo[src]

Auto Trait Implementations

impl RefUnwindSafe for Repo

impl Send for Repo

impl Sync for Repo

impl Unpin for Repo

impl UnwindSafe for Repo

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<T> Typeable for T where
    T: Any