Struct atom_syndication::Content

source ·
pub struct Content {
    pub base: Option<String>,
    pub lang: Option<String>,
    pub value: Option<String>,
    pub src: Option<String>,
    pub content_type: Option<String>,
}
Expand description

Represents the content of an Atom entry

Fields§

§base: Option<String>

Base URL for resolving any relative references found in the element.

§lang: Option<String>

Indicates the natural language for the element.

§value: Option<String>

The text value of the content.

§src: Option<String>

The URI of where the content can be found.

§content_type: Option<String>

Either “text”, “html”, “xhtml”, or the MIME type of the content.

Implementations§

source§

impl Content

source

pub fn base(&self) -> Option<&str>

Return base URL of the content.

source

pub fn set_base<V>(&mut self, base: V)
where V: Into<Option<String>>,

Set base URL of the content.

source

pub fn lang(&self) -> Option<&str>

Return natural language of the content.

source

pub fn set_lang<V>(&mut self, lang: V)
where V: Into<Option<String>>,

Set the base URL of the content.

source

pub fn value(&self) -> Option<&str>

Return the text value of the content.

If the content_type is neither "text", "html", or "xhtml" then the value should be a base64 encoded document of the indicated MIME type.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_value("Example content".to_string());
assert_eq!(content.value(), Some("Example content"));
source

pub fn set_value<V>(&mut self, value: V)
where V: Into<Option<String>>,

Set the text value of the content.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_value("Example content".to_string());
source

pub fn src(&self) -> Option<&str>

Return the URI where the content can be found.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_src("http://example.com/content.html".to_string());
assert_eq!(content.src(), Some("http://example.com/content.html"));
source

pub fn set_src<V>(&mut self, src: V)
where V: Into<Option<String>>,

Set the URI where the content can be found.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_src("http://example.com/content.html".to_string());
source

pub fn content_type(&self) -> Option<&str>

Return the type of the content.

The type is either "text", "html", "xhtml", or the MIME type of the content.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_content_type("image/png".to_string());
assert_eq!(content.content_type(), Some("image/png"));
source

pub fn set_content_type<V>(&mut self, content_type: V)
where V: Into<Option<String>>,

Set the type of the content.

§Examples
use atom_syndication::Content;

let mut content = Content::default();
content.set_content_type("image/png".to_string());
assert_eq!(content.content_type(), Some("image/png"));

Trait Implementations§

source§

impl Clone for Content

source§

fn clone(&self) -> Content

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Content

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Content

source§

fn default() -> Content

Returns the “default value” for a type. Read more
source§

impl PartialEq for Content

source§

fn eq(&self, other: &Content) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Content

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.