[][src]Struct ietfdata_rs::Datatracker

pub struct Datatracker { /* fields omitted */ }

Methods

impl Datatracker[src]

pub fn new() -> Self[src]

pub fn email(&self, email: &str) -> Result<Email, DatatrackerError>[src]

Retrieve information about an email address.

This returns the information held about a particular email address. If you want information about the person with a particular address, use person_from_email().

pub fn email_history_for_address<'a>(
    &'a self,
    email: &'a str
) -> Result<PaginatedList<HistoricalEmail>, DatatrackerError>
[src]

pub fn email_history_for_person<'a>(
    &'a self,
    person: &'a Person
) -> Result<PaginatedList<HistoricalEmail>, DatatrackerError>
[src]

pub fn person(&self, person_uri: &PersonUri) -> Result<Person, DatatrackerError>[src]

pub fn person_from_email(&self, email: &str) -> Result<Person, DatatrackerError>[src]

pub fn person_aliases<'a>(
    &'a self,
    person: &'a Person
) -> Result<PaginatedList<PersonAlias>, DatatrackerError>
[src]

pub fn person_history<'a>(
    &'a self,
    person: &'a Person
) -> Result<PaginatedList<HistoricalPerson>, DatatrackerError>
[src]

pub fn people<'a>(
    &'a self
) -> Result<PaginatedList<'a, Person>, DatatrackerError>
[src]

pub fn people_with_name<'a>(
    &'a self,
    name: &'a str
) -> Result<PaginatedList<'a, Person>, DatatrackerError>
[src]

pub fn people_with_name_containing<'a>(
    &'a self,
    name_contains: &'a str
) -> Result<PaginatedList<'a, Person>, DatatrackerError>
[src]

pub fn people_between<'a>(
    &'a self,
    start: DateTime<Utc>,
    before: DateTime<Utc>
) -> Result<PaginatedList<'a, Person>, DatatrackerError>
[src]

Auto Trait Implementations

Blanket Implementations

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<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> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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