[][src]Enum wix::TimestampServer

pub enum TimestampServer {
    Custom(String),
    Comodo,
    Verisign,
}

The aliases for the URLs to different Microsoft Authenticode timestamp servers.

Variants

Custom(String)

A URL to a timestamp server.

Comodo

The alias for the Comodo timestamp server.

Verisign

The alias for the Verisign timestamp server.

Implementations

impl TimestampServer[src]

pub fn url(&self) -> &str[src]

Gets the URL of the timestamp server for an alias.

Examples

extern crate wix;

use std::str::FromStr;
use wix::TimestampServer;

fn main() {
    assert_eq!(
        TimestampServer::from_str("http://www.example.com").unwrap().url(),
        "http://www.example.com"
    );
    assert_eq!(
        TimestampServer::Comodo.url(),
        "http://timestamp.comodoca.com/"
    );
    assert_eq!(
        TimestampServer::Verisign.url(),
        "http://timestamp.verisign.com/scripts/timstamp.dll"
    );
}

Trait Implementations

impl Clone for TimestampServer[src]

impl Debug for TimestampServer[src]

impl Display for TimestampServer[src]

impl FromStr for TimestampServer[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<TimestampServer> for TimestampServer[src]

impl StructuralPartialEq for TimestampServer[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.