pub struct DistributionManifest {
pub name: String,
pub version: String,
pub include_tui: bool,
pub include_app_server: bool,
pub include_cli: bool,
pub extensions: Vec<String>,
pub default_provider: Option<String>,
pub default_thread_store: Option<String>,
pub config_overrides: Value,
}Fields§
§name: String§version: String§include_tui: bool§include_app_server: bool§include_cli: bool§extensions: Vec<String>§default_provider: Option<String>§default_thread_store: Option<String>§config_overrides: ValueTrait Implementations§
Source§impl Clone for DistributionManifest
impl Clone for DistributionManifest
Source§fn clone(&self) -> DistributionManifest
fn clone(&self) -> DistributionManifest
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 DistributionManifest
impl Debug for DistributionManifest
Source§impl<'de> Deserialize<'de> for DistributionManifest
impl<'de> Deserialize<'de> for DistributionManifest
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
impl Eq for DistributionManifest
Source§impl PartialEq for DistributionManifest
impl PartialEq for DistributionManifest
Source§fn eq(&self, other: &DistributionManifest) -> bool
fn eq(&self, other: &DistributionManifest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DistributionManifest
impl Serialize for DistributionManifest
impl StructuralPartialEq for DistributionManifest
Auto Trait Implementations§
impl Freeze for DistributionManifest
impl RefUnwindSafe for DistributionManifest
impl Send for DistributionManifest
impl Sync for DistributionManifest
impl Unpin for DistributionManifest
impl UnsafeUnpin for DistributionManifest
impl UnwindSafe for DistributionManifest
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.