Struct rss::Cloud

source ·
pub struct Cloud {
    pub domain: String,
    pub port: String,
    pub path: String,
    pub register_procedure: String,
    pub protocol: String,
}
Expand description

Represents a cloud in an RSS feed.

Fields§

§domain: String

The domain to register with.

§port: String

The port to register with.

§path: String

The path to register with.

§register_procedure: String

The procedure to register with.

§protocol: String

The protocol to register with.

Implementations§

source§

impl Cloud

source

pub fn domain(&self) -> &str

Return the domain for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_domain("http://example.com");
assert_eq!(cloud.domain(), "http://example.com");
source

pub fn set_domain<V>(&mut self, domain: V)where V: Into<String>,

Set the domain for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_domain("http://example.com");
source

pub fn port(&self) -> &str

Return the port for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_port("80");
assert_eq!(cloud.port(), "80");
source

pub fn set_port<V>(&mut self, port: V)where V: Into<String>,

Set the port for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_port("80");
source

pub fn path(&self) -> &str

Return the path for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_port("/rpc");
assert_eq!(cloud.port(), "/rpc");
source

pub fn set_path<V>(&mut self, path: V)where V: Into<String>,

Set the path for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_path("/rpc");
source

pub fn register_procedure(&self) -> &str

Return the register procedure for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_register_procedure("pingMe");
assert_eq!(cloud.register_procedure(), "pingMe");
source

pub fn set_register_procedure<V>(&mut self, register_procedure: V)where V: Into<String>,

Set the register procedure for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_register_procedure("pingMe");
source

pub fn protocol(&self) -> &str

Return the protocol for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_protocol("xml-rpc");
assert_eq!(cloud.protocol(), "xml-rpc");
source

pub fn set_protocol<V>(&mut self, protocol: V)where V: Into<String>,

Set the protocol for this cloud.

Examples
use rss::Cloud;

let mut cloud = Cloud::default();
cloud.set_protocol("xml-rpc");
source§

impl Cloud

source

pub fn from_xml<'s, R: BufRead>( reader: &mut Reader<R>, element: &'s BytesStart<'s> ) -> Result<Self, Error>

Builds a Cloud from source XML

Trait Implementations§

source§

impl Clone for Cloud

source§

fn clone(&self) -> Cloud

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 Cloud

source§

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

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

impl Default for Cloud

source§

fn default() -> Cloud

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

impl<'de> Deserialize<'de> for Cloud

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for Cloud

source§

fn eq(&self, other: &Cloud) -> 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 Serialize for Cloud

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Validate for Cloud

source§

fn validate(&self) -> Result<(), ValidationError>

Validate the data against the RSS specification.
source§

impl StructuralPartialEq for Cloud

Auto Trait Implementations§

§

impl RefUnwindSafe for Cloud

§

impl Send for Cloud

§

impl Sync for Cloud

§

impl Unpin for Cloud

§

impl UnwindSafe for Cloud

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,