pub struct StandaloneSetupStatus {
pub namespace: String,
pub schema: String,
pub created: Vec<String>,
pub skipped: Vec<String>,
pub failed: Vec<(String, String)>,
pub config_file: Option<String>,
pub services: Option<StandaloneServicesStatus>,
pub embedding: Option<StandaloneEmbeddingStatus>,
}Fields§
§namespace: String§schema: String§created: Vec<String>§skipped: Vec<String>§failed: Vec<(String, String)>§config_file: Option<String>§services: Option<StandaloneServicesStatus>§embedding: Option<StandaloneEmbeddingStatus>Trait Implementations§
Source§impl Clone for StandaloneSetupStatus
impl Clone for StandaloneSetupStatus
Source§fn clone(&self) -> StandaloneSetupStatus
fn clone(&self) -> StandaloneSetupStatus
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 StandaloneSetupStatus
impl Debug for StandaloneSetupStatus
Source§impl<'de> Deserialize<'de> for StandaloneSetupStatus
impl<'de> Deserialize<'de> for StandaloneSetupStatus
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
Source§impl PartialEq for StandaloneSetupStatus
impl PartialEq for StandaloneSetupStatus
Source§fn eq(&self, other: &StandaloneSetupStatus) -> bool
fn eq(&self, other: &StandaloneSetupStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StandaloneSetupStatus
impl Serialize for StandaloneSetupStatus
impl Eq for StandaloneSetupStatus
impl StructuralPartialEq for StandaloneSetupStatus
Auto Trait Implementations§
impl Freeze for StandaloneSetupStatus
impl RefUnwindSafe for StandaloneSetupStatus
impl Send for StandaloneSetupStatus
impl Sync for StandaloneSetupStatus
impl Unpin for StandaloneSetupStatus
impl UnsafeUnpin for StandaloneSetupStatus
impl UnwindSafe for StandaloneSetupStatus
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,
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.