Struct opml::Outline[][src]

pub struct Outline {
Show 14 fields pub text: String, pub type: Option<String>, pub is_comment: Option<bool>, pub is_breakpoint: Option<bool>, pub created: Option<String>, pub category: Option<String>, pub outlines: Vec<Outline>, pub xml_url: Option<String>, pub description: Option<String>, pub html_url: Option<String>, pub language: Option<String>, pub title: Option<String>, pub version: Option<String>, pub url: Option<String>,
}
Expand description

The Outline element.

Fields

text: String

Every outline element must have at least a text attribute, which is what is displayed when an outliner opens the OPML document.

Version 1.0 OPML documents may omit this attribute, so for compatibility and strictness this attribute is “technically optional” as it will be replaced by an empty String if it is omitted.

Text attributes may contain encoded HTML markup.

type: Option<String>

A string that indicates how the other attributes of the Outline should be interpreted.

is_comment: Option<bool>

Indicating whether the outline is commented or not. By convention if an outline is commented, all subordinate outlines are considered to also be commented.

is_breakpoint: Option<bool>

Indicating whether a breakpoint is set on this outline. This attribute is mainly necessary for outlines used to edit scripts.

created: Option<String>

The date-time (RFC822) that this Outline element was created.

category: Option<String>

A string of comma-separated slash-delimited category strings, in the format defined by the RSS 2.0 category element. To represent a “tag”, the category string should contain no slashes.

outlines: Vec<Outline>

Child Outline elements of the current one.

xml_url: Option<String>

The HTTP address of the feed.

description: Option<String>

The top-level description element from the feed.

html_url: Option<String>

The top-level link element from the feed.

language: Option<String>

The top-level language element from the feed.

title: Option<String>

The top-level title element from the feed.

version: Option<String>

The version of the feed’s format (such as RSS 0.91, 2.0, …).

url: Option<String>

A link that can point to another OPML document or to something that can be displayed in a web browser.

Implementations

Helper function to add an Outline element with text and xml_url attributes as a child element, useful for creating grouped lists. This function also exists as OPML::add_feed for non-grouped lists.

Example

use opml::{Outline};

let mut group = Outline::default();
group.add_feed("Feed Name", "https://example.com/");
let added_feed = group.outlines.first().unwrap();

let expected_feed = &Outline {
  text: "Feed Name".to_string(),
  xml_url: Some("https://example.com/".to_string()),
  ..Outline::default()
};

assert_eq!(added_feed, expected_feed);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.