pub struct LocalReport {
pub action: LocalAction,
pub config_file: PathBuf,
pub cache_dir: PathBuf,
pub llama_server_path: Option<PathBuf>,
pub ready: bool,
pub notes: Vec<String>,
pub services: Vec<LocalServiceReport>,
}Fields§
§action: LocalAction§config_file: PathBuf§cache_dir: PathBuf§llama_server_path: Option<PathBuf>§ready: bool§notes: Vec<String>§services: Vec<LocalServiceReport>Trait Implementations§
Source§impl Clone for LocalReport
impl Clone for LocalReport
Source§fn clone(&self) -> LocalReport
fn clone(&self) -> LocalReport
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 LocalReport
impl Debug for LocalReport
Source§impl<'de> Deserialize<'de> for LocalReport
impl<'de> Deserialize<'de> for LocalReport
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 LocalReport
impl PartialEq for LocalReport
Source§fn eq(&self, other: &LocalReport) -> bool
fn eq(&self, other: &LocalReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalReport
impl Serialize for LocalReport
impl Eq for LocalReport
impl StructuralPartialEq for LocalReport
Auto Trait Implementations§
impl Freeze for LocalReport
impl RefUnwindSafe for LocalReport
impl Send for LocalReport
impl Sync for LocalReport
impl Unpin for LocalReport
impl UnsafeUnpin for LocalReport
impl UnwindSafe for LocalReport
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