pub struct MarketplaceConfig {
pub base_url: Option<String>,
pub enabled: bool,
pub skills_sh: SkillsShConfig,
}Expand description
ClawHub marketplace configuration.
Fields§
§base_url: Option<String>Base URL for the ClawHub registry.
Defaults to https://clawhub.ai.
enabled: boolWhether the marketplace is enabled.
skills_sh: SkillsShConfigSkills.sh (Vercel Labs ecosystem) configuration.
Trait Implementations§
Source§impl Clone for MarketplaceConfig
impl Clone for MarketplaceConfig
Source§fn clone(&self) -> MarketplaceConfig
fn clone(&self) -> MarketplaceConfig
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 MarketplaceConfig
impl Debug for MarketplaceConfig
Source§impl Default for MarketplaceConfig
impl Default for MarketplaceConfig
Source§impl<'de> Deserialize<'de> for MarketplaceConfig
impl<'de> Deserialize<'de> for MarketplaceConfig
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 MarketplaceConfig
impl RefUnwindSafe for MarketplaceConfig
impl Send for MarketplaceConfig
impl Sync for MarketplaceConfig
impl Unpin for MarketplaceConfig
impl UnsafeUnpin for MarketplaceConfig
impl UnwindSafe for MarketplaceConfig
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