pub struct ResolvedConfig {
pub app_name: String,
pub current_version: Version,
pub base: BaseConfig,
}Expand description
Fully resolved and validated configuration.
Fields§
§app_name: String§current_version: Version§base: BaseConfigTrait Implementations§
Source§impl Clone for ResolvedConfig
impl Clone for ResolvedConfig
Source§fn clone(&self) -> ResolvedConfig
fn clone(&self) -> ResolvedConfig
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 ResolvedConfig
impl Debug for ResolvedConfig
Source§impl TryFrom<UpdateKitConfig> for ResolvedConfig
impl TryFrom<UpdateKitConfig> for ResolvedConfig
Source§type Error = UpdateKitError
type Error = UpdateKitError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResolvedConfig
impl RefUnwindSafe for ResolvedConfig
impl Send for ResolvedConfig
impl Sync for ResolvedConfig
impl Unpin for ResolvedConfig
impl UnsafeUnpin for ResolvedConfig
impl UnwindSafe for ResolvedConfig
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