pub struct Resolved {
pub config: Config,
pub repo_root: PathBuf,
pub queue_path: PathBuf,
pub done_path: PathBuf,
pub id_prefix: String,
pub id_width: usize,
pub global_config_path: Option<PathBuf>,
pub project_config_path: Option<PathBuf>,
}Expand description
Resolved configuration including computed paths.
Fields§
§config: Config§repo_root: PathBuf§queue_path: PathBuf§done_path: PathBuf§id_prefix: String§id_width: usize§global_config_path: Option<PathBuf>§project_config_path: Option<PathBuf>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Resolved
impl RefUnwindSafe for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
impl UnwindSafe for Resolved
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