[][src]Struct rss::extension::dublincore::DublinCoreExtensionBuilder

pub struct DublinCoreExtensionBuilder { /* fields omitted */ }

Builder for DublinCoreExtension.

Implementations

impl DublinCoreExtensionBuilder[src]

pub fn contributors<VALUE: Into<Vec<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

An entity responsible for making contributions to the resource.

pub fn coverages<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.

pub fn creators<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

An entity primarily responsible for making the resource.

pub fn dates<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

A point or period of time associated with an event in the lifecycle of the resource.

pub fn descriptions<VALUE: Into<Vec<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

An account of the resource.

pub fn formats<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The file format, physical medium, or dimensions of the resource.

pub fn identifiers<VALUE: Into<Vec<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

An unambiguous reference to the resource within a given context.

pub fn languages<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

A language of the resource.

pub fn publishers<VALUE: Into<Vec<String>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

An entity responsible for making the resource available.

pub fn relations<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

A related resource.

pub fn rights<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

Information about rights held in and over the resource.

pub fn sources<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

A related resource from which the described resource is derived.

pub fn subjects<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The topic of the resource.

pub fn titles<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

A name given to the resource.

pub fn types<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self[src]

The nature or genre of the resource.

pub fn build(&self) -> Result<DublinCoreExtension, String>[src]

Builds a new DublinCoreExtension.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for DublinCoreExtensionBuilder[src]

impl Default for DublinCoreExtensionBuilder[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, 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.