pub struct HubConfig {
pub hub: HubSection,
pub generate: GenerateSection,
}Fields§
§hub: HubSection§generate: GenerateSectionImplementations§
Source§impl HubConfig
impl HubConfig
Sourcepub fn load(hub_path: &Path) -> Self
pub fn load(hub_path: &Path) -> Self
Load from agentctl.toml at hub root, or return defaults if absent.
Sourcepub fn ignore_list(&self) -> Vec<String>
pub fn ignore_list(&self) -> Vec<String>
Effective ignore list: from config if set, otherwise defaults.
Sourcepub fn is_ignored(&self, file_path: &str) -> bool
pub fn is_ignored(&self, file_path: &str) -> bool
Returns true if the file path should be excluded (case-insensitive).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HubConfig
impl<'de> Deserialize<'de> for HubConfig
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 HubConfig
impl RefUnwindSafe for HubConfig
impl Send for HubConfig
impl Sync for HubConfig
impl Unpin for HubConfig
impl UnsafeUnpin for HubConfig
impl UnwindSafe for HubConfig
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