pub struct HardwareNode {
pub name: String,
pub online: bool,
pub enabled: bool,
pub url: String,
pub token: String,
}
Fields§
§name: String
§online: bool
§enabled: bool
§url: String
§token: String
Trait Implementations§
Source§impl Debug for HardwareNode
impl Debug for HardwareNode
Source§impl<'de> Deserialize<'de> for HardwareNode
impl<'de> Deserialize<'de> for HardwareNode
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 HardwareNode
impl RefUnwindSafe for HardwareNode
impl Send for HardwareNode
impl Sync for HardwareNode
impl Unpin for HardwareNode
impl UnwindSafe for HardwareNode
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