pub struct StatusGateway {
pub name: Option<String>,
pub ignition_version: String,
pub edition: Option<String>,
pub license: Option<LicenseInfo>,
}Expand description
Identity half of StatusResult.
Fields§
§name: Option<String>Gateway display name, when reported.
ignition_version: StringVersion + build revision, e.g. "8.3.6 (b2026042713)".
edition: Option<String>Edition, when reported.
license: Option<LicenseInfo>License summary from gateway-info ({mode, …}), when reported.
Trait Implementations§
Source§impl Debug for StatusGateway
impl Debug for StatusGateway
Auto Trait Implementations§
impl Freeze for StatusGateway
impl RefUnwindSafe for StatusGateway
impl Send for StatusGateway
impl Sync for StatusGateway
impl Unpin for StatusGateway
impl UnsafeUnpin for StatusGateway
impl UnwindSafe for StatusGateway
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