Expand description
A library of common utilities used by cmc
and related tools.
To manually regenerate reference documentation from doc comments in
this file, see the instructions at:
tools/lib/reference_doc/macro/derive-reference-doc-tests/src/test_data/README.md
Re-exports§
pub use crate::one_or_many::OneOrMany;
pub use crate::translate::compile;
pub use crate::translate::CompileOptions;
Modules§
Structs§
- Capability
- Capability
Requirements - Child
- Example:
- Collection
- Example:
- Config
Key - Debug
Registration - Dictionary
Ref - A reference to a (possibly nested) dictionary.
- Document
- Component manifest (
.cml
) reference - Environment
- Example:
- Expose
- Example:
- Namespace
Path - NamespacePath is the same as Path but accepts
"/"
(which is also a valid namespace path). - Offer
- Example:
- OneOr
Many Event Scope - Generates deserializer for
OneOrMany<UseFromRef>
. - OneOr
Many Expose From Refs - Generates deserializer for
OneOrMany<ExposeFromRef>
. - OneOr
Many Names - Generates deserializer for
OneOrMany<Name>
. - OneOr
Many Offer From Refs - Generates deserializer for
OneOrMany<OfferFromRef>
. - OneOr
Many Offer ToRefs - Generates deserializer for
OneOrMany<OfferToRef>
. - OneOr
Many Paths - Generates deserializer for
OneOrMany<Path>
. - Path
- A path type used throughout Component Framework, along with its variants NamespacePath and RelativePath. Examples of use:
- Program
- Relative
Path - Same as Path except the path does not begin with
/
. - Resolver
Registration - Rights
- A list of rights.
- Runner
Registration - Stop
Timeout Ms - The stop timeout configured in an environment.
- Url
- A component URL. The URL is validated, but represented as a string to avoid normalization and retain the original representation.
- Use
- Example:
Enums§
- Allowed
Offers - The kinds of offers that can target components in a given collection. See
AllowedOffers
. - AnyRef
- A relative reference to another object. This is a generic type that can encode any supported reference subtype. For named references, it holds a reference to the name instead of the name itself.
- Availability
- Capability availability. See
Availability
. - Capability
From Ref - A reference in a
storage from
. - Capability
Id - A name/identity of a capability exposed/offered to another component.
- Config
Nested Value Type - Config
Runtime Source - Config
Type - Config
Value Type - Delivery
Type - Specifies when the framework will open the protocol from the provider
component’s outgoing directory when someone requests the capability. See
DeliveryType
. - Dependency
Type - Offered dependency type. See
DependencyType
. - Durability
- The duration of child components in a collection. See
Durability
. - Environment
Extends - Environment
Ref - A reference in an environment.
- Event
Scope - The scope of an event.
- Expose
From Ref - A reference in an
expose from
. - Expose
ToRef - A reference in an
expose to
. - Must
UseRequirement - Offer
From Ref - A reference in an
offer from
. - Offer
ToAll Capability - Offer
ToRef - A reference in an
offer to
. - OnTerminate
- A component instance’s recovery policy. See
OnTerminate
. - Parse
Error - The error representing a failure to parse a type from string.
- Registration
Ref - A reference in an environment registration.
- Right
- A right or bundle of rights to apply to a directory.
- Root
Dictionary Ref - A reference to a root dictionary.
- Source
Availability - A reference in an
offer to
. - Startup
Mode - A component instance’s startup mode. See
StartupMode
. - Storage
Id - UseFrom
Ref - A reference in a
use from
.
Traits§
Functions§
- alias_
or_ name - alias_
or_ path - format_
cml - offer_
to_ all_ and_ component_ diff_ capabilities_ message - offer_
to_ all_ and_ component_ diff_ sources_ message - offer_
to_ all_ would_ duplicate - Returns
Ok(true)
if desugaring theoffer_to_all
usingname
duplicatesspecific_offer
. ReturnsOk(false)
if not a duplicate. - parse_
many_ documents - Parses a string
buffer
into a vector of Document.file
is used for error reporting. Supports JSON encoded as an array of Document JSON objects. - parse_
one_ document - Parses a string
buffer
into a Document.file
is used for error reporting.
Type Aliases§
- Name
- A name that can refer to a component, collection, or other entity in the
Component Manifest. Its length is bounded to
MAX_NAME_LENGTH
.