Struct cobalt::cobalt_model::Collection
source · pub struct Collection {
pub title: KString,
pub slug: KString,
pub description: Option<KString>,
pub dir: RelPath,
pub drafts_dir: Option<RelPath>,
pub order: SortOrder,
pub rss: Option<RelPath>,
pub jsonfeed: Option<RelPath>,
pub publish_date_in_filename: bool,
pub default: Frontmatter,
}Fields§
§title: KString§slug: KString§description: Option<KString>§dir: RelPath§drafts_dir: Option<RelPath>§order: SortOrder§rss: Option<RelPath>§jsonfeed: Option<RelPath>§publish_date_in_filename: bool§default: FrontmatterImplementations§
source§impl Collection
impl Collection
pub fn from_page_config( config: PageCollection, site: &Site, common_default: &Frontmatter ) -> Result<Self>
pub fn from_post_config( config: PostCollection, site: &Site, include_drafts: bool, common_default: &Frontmatter ) -> Result<Self>
pub fn attributes(&self) -> Object
Trait Implementations§
source§impl Clone for Collection
impl Clone for Collection
source§fn clone(&self) -> Collection
fn clone(&self) -> Collection
Returns a copy 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 Collection
impl Debug for Collection
source§impl PartialEq<Collection> for Collection
impl PartialEq<Collection> for Collection
source§fn eq(&self, other: &Collection) -> bool
fn eq(&self, other: &Collection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for Collection
impl Serialize for Collection
impl Eq for Collection
impl StructuralEq for Collection
impl StructuralPartialEq for Collection
Auto Trait Implementations§
impl RefUnwindSafe for Collection
impl Send for Collection
impl Sync for Collection
impl Unpin for Collection
impl UnwindSafe for Collection
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.