pub struct LabelsConfig {
pub namespaces: BTreeMap<String, NamespaceSpec>,
}Expand description
[labels] block in .lex.toml — declarations of extension
namespaces the workspace owner wants the host to load.
Loaded outside the main LexConfig confique chain because the
shape is a free-form map keyed by namespace name, not a
fixed-field struct. See load_labels_from_toml.
[labels]
acme = { tap = "acme" } # tap shorthand
foolco = "gitlab:foolco/lex-labels#main" # bare URI
custom = { uri = "github:org/repo", rev = "v1", subdir = "labels/" }
bigorg = { tap = "bigorg", via = "git" } # private repo, git cloneThe reserved namespace name lex is rejected at load time —
lex.* is owned by the core and ships compiled-in.
Fields§
§namespaces: BTreeMap<String, NamespaceSpec>Namespace name → spec. Order is sorted (BTreeMap) for deterministic loading and stable diagnostics.
Trait Implementations§
Source§impl Clone for LabelsConfig
impl Clone for LabelsConfig
Source§fn clone(&self) -> LabelsConfig
fn clone(&self) -> LabelsConfig
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 LabelsConfig
impl Debug for LabelsConfig
Source§impl Default for LabelsConfig
impl Default for LabelsConfig
Source§fn default() -> LabelsConfig
fn default() -> LabelsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelsConfig
impl<'de> Deserialize<'de> for LabelsConfig
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 LabelsConfig
impl RefUnwindSafe for LabelsConfig
impl Send for LabelsConfig
impl Sync for LabelsConfig
impl Unpin for LabelsConfig
impl UnsafeUnpin for LabelsConfig
impl UnwindSafe for LabelsConfig
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more