pub struct ProfileSummary {
pub name: String,
pub label: Option<String>,
pub url: String,
pub auth_kind: &'static str,
}Expand description
One profile list row — auth_kind is a safe kind string, NEVER a
secret or env value.
Fields§
§name: StringProfile name.
label: Option<String>Optional display label (CORE-01) — absent from JSON when unset
(mirrors Profile::label).
url: StringGateway base URL (normalized).
auth_kind: &'static strSafe credential kind string.
Trait Implementations§
Source§impl Debug for ProfileSummary
impl Debug for ProfileSummary
Auto Trait Implementations§
impl Freeze for ProfileSummary
impl RefUnwindSafe for ProfileSummary
impl Send for ProfileSummary
impl Sync for ProfileSummary
impl Unpin for ProfileSummary
impl UnsafeUnpin for ProfileSummary
impl UnwindSafe for ProfileSummary
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