pub struct SiteFeaturesConfig {
pub changelog: bool,
pub dependency_graph: bool,
pub timeline: bool,
pub status_indexes: bool,
pub label_indexes: bool,
}Expand description
Feature toggles for site pages
Fields§
§changelog: boolGenerate changelog page
dependency_graph: boolGenerate dependency graph page
timeline: boolGenerate timeline page
status_indexes: boolGenerate status index pages
label_indexes: boolGenerate label index pages
Trait Implementations§
Source§impl Clone for SiteFeaturesConfig
impl Clone for SiteFeaturesConfig
Source§fn clone(&self) -> SiteFeaturesConfig
fn clone(&self) -> SiteFeaturesConfig
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 SiteFeaturesConfig
impl Debug for SiteFeaturesConfig
Source§impl Default for SiteFeaturesConfig
impl Default for SiteFeaturesConfig
Source§impl<'de> Deserialize<'de> for SiteFeaturesConfig
impl<'de> Deserialize<'de> for SiteFeaturesConfig
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
Auto Trait Implementations§
impl Freeze for SiteFeaturesConfig
impl RefUnwindSafe for SiteFeaturesConfig
impl Send for SiteFeaturesConfig
impl Sync for SiteFeaturesConfig
impl Unpin for SiteFeaturesConfig
impl UnwindSafe for SiteFeaturesConfig
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