pub struct StandaloneSetupRequest {Show 15 fields
pub standalone: bool,
pub database_url: Redacted,
pub no_services: bool,
pub overwrite_code_index: bool,
pub schema: String,
pub embedding_provider: Option<String>,
pub embedding_api_base: Option<String>,
pub embedding_model: Option<String>,
pub embedding_query_prefix: Option<String>,
pub embedding_vector_dim: Option<usize>,
pub embedding_api_key: Redacted,
pub falkordb_host: Option<String>,
pub falkordb_port: Option<u16>,
pub falkordb_password: Redacted,
pub qdrant_url: Option<String>,
}Fields§
§standalone: bool§database_url: RedactedSetup-only PostgreSQL URL. It is passed to the live connection path,
redacted from Debug, and never persisted to JSON output.
no_services: bool§overwrite_code_index: bool§schema: String§embedding_provider: Option<String>§embedding_api_base: Option<String>§embedding_model: Option<String>§embedding_query_prefix: Option<String>§embedding_vector_dim: Option<usize>§embedding_api_key: RedactedSetup-only embedding secret. It is redacted from Debug; standalone
setup persists it only to the user’s local gcore.yaml.
falkordb_host: Option<String>§falkordb_port: Option<u16>§falkordb_password: RedactedSetup-only FalkorDB secret. It is used during provisioning, redacted
from Debug, and never persisted to JSON output.
qdrant_url: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for StandaloneSetupRequest
impl Clone for StandaloneSetupRequest
Source§fn clone(&self) -> StandaloneSetupRequest
fn clone(&self) -> StandaloneSetupRequest
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 StandaloneSetupRequest
impl Debug for StandaloneSetupRequest
Source§impl<'de> Deserialize<'de> for StandaloneSetupRequest
impl<'de> Deserialize<'de> for StandaloneSetupRequest
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 StandaloneSetupRequest
Source§impl PartialEq for StandaloneSetupRequest
impl PartialEq for StandaloneSetupRequest
Source§fn eq(&self, other: &StandaloneSetupRequest) -> bool
fn eq(&self, other: &StandaloneSetupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StandaloneSetupRequest
impl Serialize for StandaloneSetupRequest
impl StructuralPartialEq for StandaloneSetupRequest
Auto Trait Implementations§
impl Freeze for StandaloneSetupRequest
impl RefUnwindSafe for StandaloneSetupRequest
impl Send for StandaloneSetupRequest
impl Sync for StandaloneSetupRequest
impl Unpin for StandaloneSetupRequest
impl UnsafeUnpin for StandaloneSetupRequest
impl UnwindSafe for StandaloneSetupRequest
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more