[][src]Enum bloguen::ops::FeedType

pub enum FeedType {
    Rss,
    Atom,
}

A feed type specifier.

Variants

Rss

RSS 2.0

Atom

Atom

Methods

impl FeedType[src]

pub fn from(s: &str) -> Option<FeedType>[src]

Get a feed type corresponding to the specified string.

The string repr of any variant is its name, case-insensitive.

Examples

assert_eq!(FeedType::from("RsS"), Some(FeedType::Rss));
assert_eq!(FeedType::from("atOM"), Some(FeedType::Atom));

pub fn name(&self) -> &'static str[src]

Get a human-readable name of this feed type.

This is re-from()able to self.

Examples

assert_eq!(FeedType::Rss.name(), "RSS");
assert_eq!(FeedType::Atom.name(), "Atom");

Trait Implementations

impl Eq for FeedType[src]

impl Clone for FeedType[src]

impl PartialOrd<FeedType> for FeedType[src]

impl PartialEq<FeedType> for FeedType[src]

impl Ord for FeedType[src]

impl Copy for FeedType[src]

impl Hash for FeedType[src]

impl Debug for FeedType[src]

impl Display for FeedType[src]

impl FromStr for FeedType[src]

type Err = Error

The associated error which can be returned from parsing.

impl Serialize for FeedType[src]

impl<'de> Deserialize<'de> for FeedType[src]

Auto Trait Implementations

impl Send for FeedType

impl Unpin for FeedType

impl Sync for FeedType

impl UnwindSafe for FeedType

impl RefUnwindSafe for FeedType

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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.

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

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

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

impl<T> RuleType for T where
    T: Copy + Eq + Ord + Hash + Debug
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]