pub struct ProfileListResult {
pub active: Option<String>,
pub profiles: Vec<ProfileSummary>,
}Expand description
Result of profile list.
Fields§
§active: Option<String>The config’s active profile name.
profiles: Vec<ProfileSummary>Profiles in BTreeMap (name-sorted) order — deterministic goldens.
Trait Implementations§
Source§impl Debug for ProfileListResult
impl Debug for ProfileListResult
Auto Trait Implementations§
impl Freeze for ProfileListResult
impl RefUnwindSafe for ProfileListResult
impl Send for ProfileListResult
impl Sync for ProfileListResult
impl Unpin for ProfileListResult
impl UnsafeUnpin for ProfileListResult
impl UnwindSafe for ProfileListResult
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