[][src]Struct feed_rs::model::Person

pub struct Person {
    pub name: String,
    pub uri: Option<String>,
    pub email: Option<String>,
}

Represents an author, contributor etc.

Fields

name: String

Atom: human-readable name for the person. JSON Feed: human-readable name for the person.

uri: Option<String>

Atom: home page for the person. JSON Feed: link to media (Twitter etc) for the person

email: Option<String>

Atom: An email address for the person.

Methods

impl Person[src]

pub fn new(name: String) -> Person[src]

Trait Implementations

impl Debug for Person[src]

impl PartialEq<Person> for Person[src]

impl StructuralPartialEq for Person[src]

Auto Trait Implementations

impl RefUnwindSafe for Person

impl Send for Person

impl Sync for Person

impl Unpin for Person

impl UnwindSafe for Person

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.

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