pub struct HelpArticleCard {
pub category: Option<String>,
pub excerpt: Option<String>,
pub slug: Option<String>,
pub title: Option<String>,
pub updated_at: Option<i32>,
}Fields§
§category: Option<String>Category is the name of the knowledge-base section the article sits in, or empty when it is filed under none.
excerpt: Option<String>Excerpt is the short summary the author wrote for listings, or empty.
slug: Option<String>Slug is the article’s stable public identifier and the path segment /v1/help/articles/{slug} addresses it by.
title: Option<String>Title is the article’s headline.
updated_at: Option<i32>UpdatedAt is the unix second the article was last written, in the help center’s own store.
Implementations§
Source§impl HelpArticleCard
impl HelpArticleCard
pub fn new() -> HelpArticleCard
Trait Implementations§
Source§impl Clone for HelpArticleCard
impl Clone for HelpArticleCard
Source§fn clone(&self) -> HelpArticleCard
fn clone(&self) -> HelpArticleCard
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HelpArticleCard
impl Debug for HelpArticleCard
Source§impl Default for HelpArticleCard
impl Default for HelpArticleCard
Source§fn default() -> HelpArticleCard
fn default() -> HelpArticleCard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HelpArticleCard
impl<'de> Deserialize<'de> for HelpArticleCard
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 PartialEq for HelpArticleCard
impl PartialEq for HelpArticleCard
Source§impl Serialize for HelpArticleCard
impl Serialize for HelpArticleCard
impl StructuralPartialEq for HelpArticleCard
Auto Trait Implementations§
impl Freeze for HelpArticleCard
impl RefUnwindSafe for HelpArticleCard
impl Send for HelpArticleCard
impl Sync for HelpArticleCard
impl Unpin for HelpArticleCard
impl UnsafeUnpin for HelpArticleCard
impl UnwindSafe for HelpArticleCard
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