[−][src]Struct json_feed_model::Hub
A subscription endpoint which can be used to receive feed update notifications.
Valid Hub
A Hub
must have both the type
and url
properties set.
Implementations
impl Hub
[src]
pub fn new() -> Self
[src]
Instantiates with an empty JSON object.
pub fn as_map(&self) -> &Map<String, Value>
[src]
Returns the inner Map
as a reference.
pub fn as_map_mut(&mut self) -> &mut Map<String, Value>
[src]
Returns the inner Map
as a mutable reference.
pub fn into_inner(self) -> Map<String, Value>
[src]
Converts the type into the inner Map
.
pub fn hub_type(&self) -> Result<Option<&str>, Error>
[src]
The required protocol which is used to subscribe with.
pub fn set_hub_type<T>(&mut self, value: T) -> Option<Value> where
T: ToString,
[src]
T: ToString,
Sets the type.
pub fn remove_hub_type(&mut self) -> Option<Value>
[src]
Removes the type.
pub fn url(&self) -> Result<Option<&str>, Error>
[src]
A required hub type specific URL which is used to subscribe with.
pub fn set_url<T>(&mut self, value: T) -> Option<Value> where
T: ToString,
[src]
T: ToString,
Sets the URL.
pub fn remove_url(&mut self) -> Option<Value>
[src]
Removes the URL.
impl Hub
[src]
pub fn is_valid(&self, version: &Version<'_>) -> bool
[src]
Verifies if the JSON data complies with a specific Version
of the JSON Feed spec.
Trait Implementations
impl AsMut<Map<String, Value>> for Hub
[src]
impl AsRef<Map<String, Value>> for Hub
[src]
impl Clone for Hub
[src]
impl Debug for Hub
[src]
impl Default for Hub
[src]
impl<'de> Deserialize<'de> for Hub
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl Eq for Hub
[src]
impl From<Map<String, Value>> for Hub
[src]
impl PartialEq<Hub> for Hub
[src]
impl PartialEq<Map<String, Value>> for Hub
[src]
fn eq(&self, other: &Map<String, Value>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl Serialize for Hub
[src]
Auto Trait Implementations
impl RefUnwindSafe for Hub
impl Send for Hub
impl Sync for Hub
impl Unpin for Hub
impl UnwindSafe for Hub
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,