Skip to main content

PluginMeta

Struct PluginMeta 

Source
pub struct PluginMeta {
    name: String,
    version: String,
    description: String,
    authors: String,
    state: PluginState,
    execution: ExecutionContext,
}
Expand description

Metadata about a plugin.

Constructed via the builder pattern: PluginMeta::new followed by optional chained setters. Generic fields (name, version, description, authors) are sourced automatically from Cargo.toml via env!() macros so that plugin authors don’t have to duplicate them.

Fields§

§name: String§version: String§description: String§authors: String§state: PluginState§execution: ExecutionContext

Implementations§

Source§

impl PluginMeta

Source

pub fn new(name: impl Into<String>, version: impl Into<String>) -> Self

Create metadata with a plugin name and version. All other fields start at sensible defaults (ephemeral state, exclusive execution).

Source

pub fn with_description(self, d: impl Into<String>) -> Self

Set a human-readable description of what the plugin does.

Source

pub fn with_authors(self, a: impl Into<String>) -> Self

Set the plugin author(s), typically sourced from Cargo.toml.

Source

pub fn with_state(self, s: PluginState) -> Self

Set the plugin’s lifecycle behavior (persistent, ephemeral, or scoped).

Source

pub fn with_execution(self, e: ExecutionContext) -> Self

Set the concurrency model the daemon should use when dispatching tasks.

Source

pub fn name(&self) -> &str

The plugin’s unique identifier (typically the crate name).

Source

pub fn version(&self) -> &str

The plugin’s version string (typically from Cargo.toml).

Source

pub fn description(&self) -> &str

A short description of what the plugin does. May be empty.

Source

pub fn authors(&self) -> &str

The plugin author(s). May be empty.

Source

pub fn state(&self) -> PluginState

How the daemon manages this plugin’s lifetime between tasks.

Source

pub fn execution(&self) -> ExecutionContext

How the daemon schedules concurrent tasks for this plugin.

Trait Implementations§

Source§

impl Clone for PluginMeta

Source§

fn clone(&self) -> PluginMeta

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PluginMeta

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for PluginMeta

Source§

fn eq(&self, other: &PluginMeta) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for PluginMeta

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in [Layered].
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more