pub struct LlamaConfig {
pub model_path: PathBuf,
pub pid_file: PathBuf,
pub stdout: PathBuf,
pub stderr: PathBuf,
pub sock_file: PathBuf,
pub port: u16,
}
👎Deprecated
Fields§
§model_path: PathBuf
👎Deprecated
§pid_file: PathBuf
👎Deprecated
§stdout: PathBuf
👎Deprecated
§stderr: PathBuf
👎Deprecated
§sock_file: PathBuf
👎Deprecated
§port: u16
👎Deprecated
Trait Implementations§
Source§impl Clone for LlamaConfig
impl Clone for LlamaConfig
Source§fn clone(&self) -> LlamaConfig
fn clone(&self) -> LlamaConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 LlamaConfig
impl Debug for LlamaConfig
Source§impl Into<Daemon> for LlamaConfig
impl Into<Daemon> for LlamaConfig
Auto Trait Implementations§
impl Freeze for LlamaConfig
impl RefUnwindSafe for LlamaConfig
impl Send for LlamaConfig
impl Sync for LlamaConfig
impl Unpin for LlamaConfig
impl UnwindSafe for LlamaConfig
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