pub enum ManifestEntry {
Capability(String),
ConfigSchema(PluginConfigSchemaManifest),
Operation(OperationManifest),
Resource(ResourceManifest),
ResourceTemplate(ResourceTemplateManifest),
Prompt(PromptManifest),
Completion(CompletionManifest),
HttpBinding(HttpBindingManifest),
Endpoint(EndpointManifest),
MeshChannel(MeshChannelManifest),
MeshEventSubscription(MeshEventSubscriptionManifest),
WebUi(PluginWebUiManifest),
}Variants§
Capability(String)
ConfigSchema(PluginConfigSchemaManifest)
Operation(OperationManifest)
Resource(ResourceManifest)
ResourceTemplate(ResourceTemplateManifest)
Prompt(PromptManifest)
Completion(CompletionManifest)
HttpBinding(HttpBindingManifest)
Endpoint(EndpointManifest)
MeshChannel(MeshChannelManifest)
MeshEventSubscription(MeshEventSubscriptionManifest)
WebUi(PluginWebUiManifest)
Trait Implementations§
Source§impl Clone for ManifestEntry
impl Clone for ManifestEntry
Source§fn clone(&self) -> ManifestEntry
fn clone(&self) -> ManifestEntry
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 ManifestEntry
impl Debug for ManifestEntry
Source§impl From<CompletionBuilder> for ManifestEntry
impl From<CompletionBuilder> for ManifestEntry
Source§fn from(value: CompletionBuilder) -> Self
fn from(value: CompletionBuilder) -> Self
Converts to this type from the input type.
Source§impl From<EndpointBuilder> for ManifestEntry
impl From<EndpointBuilder> for ManifestEntry
Source§fn from(value: EndpointBuilder) -> Self
fn from(value: EndpointBuilder) -> Self
Converts to this type from the input type.
Source§impl From<HttpBindingBuilder> for ManifestEntry
impl From<HttpBindingBuilder> for ManifestEntry
Source§fn from(value: HttpBindingBuilder) -> Self
fn from(value: HttpBindingBuilder) -> Self
Converts to this type from the input type.
Source§impl From<MeshChannelManifest> for ManifestEntry
impl From<MeshChannelManifest> for ManifestEntry
Source§fn from(value: MeshChannelManifest) -> Self
fn from(value: MeshChannelManifest) -> Self
Converts to this type from the input type.
Source§impl From<MeshEventSubscriptionManifest> for ManifestEntry
impl From<MeshEventSubscriptionManifest> for ManifestEntry
Source§fn from(value: MeshEventSubscriptionManifest) -> Self
fn from(value: MeshEventSubscriptionManifest) -> Self
Converts to this type from the input type.
Source§impl From<OperationBuilder> for ManifestEntry
impl From<OperationBuilder> for ManifestEntry
Source§fn from(value: OperationBuilder) -> Self
fn from(value: OperationBuilder) -> Self
Converts to this type from the input type.
Source§impl From<PluginConfigSchemaBuilder> for ManifestEntry
impl From<PluginConfigSchemaBuilder> for ManifestEntry
Source§fn from(value: PluginConfigSchemaBuilder) -> Self
fn from(value: PluginConfigSchemaBuilder) -> Self
Converts to this type from the input type.
Source§impl From<PluginConfigSchemaManifest> for ManifestEntry
impl From<PluginConfigSchemaManifest> for ManifestEntry
Source§fn from(value: PluginConfigSchemaManifest) -> Self
fn from(value: PluginConfigSchemaManifest) -> Self
Converts to this type from the input type.
Source§impl From<PluginWebUiBuilder> for ManifestEntry
impl From<PluginWebUiBuilder> for ManifestEntry
Source§fn from(value: PluginWebUiBuilder) -> Self
fn from(value: PluginWebUiBuilder) -> Self
Converts to this type from the input type.
Source§impl From<PluginWebUiManifest> for ManifestEntry
impl From<PluginWebUiManifest> for ManifestEntry
Source§fn from(value: PluginWebUiManifest) -> Self
fn from(value: PluginWebUiManifest) -> Self
Converts to this type from the input type.
Source§impl From<PromptBuilder> for ManifestEntry
impl From<PromptBuilder> for ManifestEntry
Source§fn from(value: PromptBuilder) -> Self
fn from(value: PromptBuilder) -> Self
Converts to this type from the input type.
Source§impl From<ResourceBuilder> for ManifestEntry
impl From<ResourceBuilder> for ManifestEntry
Source§fn from(value: ResourceBuilder) -> Self
fn from(value: ResourceBuilder) -> Self
Converts to this type from the input type.
Source§impl From<ResourceTemplateBuilder> for ManifestEntry
impl From<ResourceTemplateBuilder> for ManifestEntry
Source§fn from(value: ResourceTemplateBuilder) -> Self
fn from(value: ResourceTemplateBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManifestEntry
impl RefUnwindSafe for ManifestEntry
impl Send for ManifestEntry
impl Sync for ManifestEntry
impl Unpin for ManifestEntry
impl UnsafeUnpin for ManifestEntry
impl UnwindSafe for ManifestEntry
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