pub struct DriverInfo {
pub attributes: Option<HashMap<String, String>>,
pub detected: Option<bool>,
pub healthy: Option<bool>,
pub health_description: Option<String>,
pub update_time: Option<String>,
}
Fields§
§attributes: Option<HashMap<String, String>>
§detected: Option<bool>
§healthy: Option<bool>
§health_description: Option<String>
§update_time: Option<String>
Implementations§
Source§impl DriverInfo
impl DriverInfo
pub fn new() -> DriverInfo
Trait Implementations§
Source§impl Clone for DriverInfo
impl Clone for DriverInfo
Source§fn clone(&self) -> DriverInfo
fn clone(&self) -> DriverInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DriverInfo
impl Debug for DriverInfo
Source§impl<'de> Deserialize<'de> for DriverInfo
impl<'de> Deserialize<'de> for DriverInfo
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
Source§impl PartialEq for DriverInfo
impl PartialEq for DriverInfo
Source§impl Serialize for DriverInfo
impl Serialize for DriverInfo
impl StructuralPartialEq for DriverInfo
Auto Trait Implementations§
impl Freeze for DriverInfo
impl RefUnwindSafe for DriverInfo
impl Send for DriverInfo
impl Sync for DriverInfo
impl Unpin for DriverInfo
impl UnwindSafe for DriverInfo
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