pub struct WmxSitemapContent {
pub indexed: Option<i64>,
pub submitted: Option<i64>,
pub type_: Option<String>,
}Expand description
Information about the various content types in the sitemap.
This type is not used in any activity, and only used as part of another schema.
Fields§
§indexed: Option<i64>The number of URLs from the sitemap that were indexed (of the content type).
submitted: Option<i64>The number of URLs in the sitemap (of the content type).
type_: Option<String>The specific type of content in this sitemap. For example: web.
Trait Implementations§
Source§impl Clone for WmxSitemapContent
impl Clone for WmxSitemapContent
Source§fn clone(&self) -> WmxSitemapContent
fn clone(&self) -> WmxSitemapContent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WmxSitemapContent
impl Debug for WmxSitemapContent
Source§impl Default for WmxSitemapContent
impl Default for WmxSitemapContent
Source§fn default() -> WmxSitemapContent
fn default() -> WmxSitemapContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WmxSitemapContent
impl<'de> Deserialize<'de> for WmxSitemapContent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 Serialize for WmxSitemapContent
impl Serialize for WmxSitemapContent
impl Part for WmxSitemapContent
Auto Trait Implementations§
impl Freeze for WmxSitemapContent
impl RefUnwindSafe for WmxSitemapContent
impl Send for WmxSitemapContent
impl Sync for WmxSitemapContent
impl Unpin for WmxSitemapContent
impl UnwindSafe for WmxSitemapContent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more