Struct rss::Guid [] [src]

pub struct Guid { /* fields omitted */ }

Represents the GUID of an RSS item.

Methods

impl Guid
[src]

Return whether this GUID is a permalink.

Examples

use rss::Guid;

let mut guid = Guid::default();
guid.set_permalink(true);
assert!(guid.is_permalink());

Set whether this GUID is a permalink.

Examples

use rss::Guid;

let mut guid = Guid::default();
guid.set_permalink(true);

[src]

Return the value of this GUID.

Examples

use rss::Guid;

let mut guid = Guid::default();
guid.set_value("00000000-0000-0000-0000-00000000000");
assert_eq!(guid.value(), "00000000-0000-0000-0000-00000000000");

[src]

Set the value of this GUID.

Examples

use rss::Guid;

let mut guid = Guid::default();
guid.set_value("00000000-0000-0000-0000-00000000000");

Trait Implementations

impl Debug for Guid
[src]

[src]

Formats the value using the given formatter.

impl Clone for Guid
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Guid
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Default for Guid
[src]

[src]

Returns the "default value" for a type. Read more