pub struct SystemInfoVersion {
pub api_version: String,
pub version: String,
pub go_version: String,
pub git_commit: String,
pub built_time: String,
pub built: u64,
pub build_origin: String,
pub os_arch: String,
pub os: String,
}
Fields§
§api_version: String
§version: String
§go_version: String
§git_commit: String
§built_time: String
§built: u64
§build_origin: String
§os_arch: String
§os: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SystemInfoVersion
impl<'de> Deserialize<'de> for SystemInfoVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SystemInfoVersion
impl RefUnwindSafe for SystemInfoVersion
impl Send for SystemInfoVersion
impl Sync for SystemInfoVersion
impl Unpin for SystemInfoVersion
impl UnwindSafe for SystemInfoVersion
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