[][src]Struct upt::Vendor

pub struct Vendor { /* fields omitted */ }

Repersent a kind of package management tool. e.g. apt, pacman, yum...

Methods

impl Vendor[src]

A kind of package management tool. e.g. apt, pacman, yum...

pub fn lookup(name: &str) -> Result<Vendor, UptError>[src]

Lookup vender by name

pub fn detect() -> Result<Vendor, UptError>[src]

Detect package management on os

pub fn parse(&self, args: &[String]) -> Result<Task, UptError>[src]

Parse command line, figure out the task to perform

pub fn eval(&self, task: &Task) -> Result<String, UptError>[src]

Convert the task to command line, which invokes the os's package management tool.

pub fn help(&self) -> String[src]

Dump help message

Trait Implementations

impl Debug for Vendor[src]

Auto Trait Implementations

impl Send for Vendor

impl Sync for Vendor

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.