Enum contack::uri::Uri[][src]

pub enum Uri {
    Url {
        url: String,
    },
    Bytes {
        val: Vec<u8>,
        mime: String,
    },
}

A struct which can either store byte information or a url

Variants

Url

Fields of Url

url: String
Bytes

Fields of Bytes

val: Vec<u8>mime: String

Implementations

impl Uri[src]

pub fn new_url(string: String) -> Uri[src]

Creates a new url from a string

pub fn new_bytes(bytes: Vec<u8>, mime: String) -> Uri[src]

Creates a new bytes from a vec

pub fn new_bytes_array(bytes: &[u8], mime: String) -> Uri[src]

Creates a new bytes from a &u8

Trait Implementations

impl Debug for Uri[src]

impl Eq for Uri[src]

impl PartialEq<Uri> for Uri[src]

impl StructuralEq for Uri[src]

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