pub struct InitConfig {
pub name: String,
pub mode: Mode,
pub deployment: Deployment,
pub postgres_url: Option<String>,
pub qdrant_url: Option<String>,
}Expand description
Project configuration collected from prompts.
Fields§
§name: String§mode: Mode§deployment: Deployment§postgres_url: Option<String>§qdrant_url: Option<String>Auto Trait Implementations§
impl Freeze for InitConfig
impl RefUnwindSafe for InitConfig
impl Send for InitConfig
impl Sync for InitConfig
impl Unpin for InitConfig
impl UnwindSafe for InitConfig
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