pub struct HelpArticleList {
pub data: Option<Vec<HelpArticleCard>>,
}Fields§
§data: Option<Vec<HelpArticleCard>>Data is the matching Published, public articles, newest write order last — the store’s order, not a ranking. Empty when the center has none.
Implementations§
Source§impl HelpArticleList
impl HelpArticleList
pub fn new() -> HelpArticleList
Trait Implementations§
Source§impl Clone for HelpArticleList
impl Clone for HelpArticleList
Source§fn clone(&self) -> HelpArticleList
fn clone(&self) -> HelpArticleList
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 HelpArticleList
impl Debug for HelpArticleList
Source§impl Default for HelpArticleList
impl Default for HelpArticleList
Source§fn default() -> HelpArticleList
fn default() -> HelpArticleList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HelpArticleList
impl<'de> Deserialize<'de> for HelpArticleList
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 HelpArticleList
impl PartialEq for HelpArticleList
Source§impl Serialize for HelpArticleList
impl Serialize for HelpArticleList
impl StructuralPartialEq for HelpArticleList
Auto Trait Implementations§
impl Freeze for HelpArticleList
impl RefUnwindSafe for HelpArticleList
impl Send for HelpArticleList
impl Sync for HelpArticleList
impl Unpin for HelpArticleList
impl UnsafeUnpin for HelpArticleList
impl UnwindSafe for HelpArticleList
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