pub struct Properties {Show 14 fields
pub brand: String,
pub hardware_id: String,
pub product_full_name: String,
pub product_number: String,
pub product_short_name: String,
pub product_type: String,
pub product_variant: String,
pub serial_number: String,
pub soc: String,
pub soc_architecture: String,
pub soc_serial_number: String,
pub firmware_build_date: String,
pub firmware_version: String,
pub web_url: String,
}Expand description
A set of basic device properties.
Fields§
§brand: StringThe brand of the device, likely "AXIS".
hardware_id: StringThe hardware ID, believed to be an internal AXIS part identifier.
product_full_name: StringThe full name of the product.
product_number: StringThe product number seen in typical product catalogs.
product_short_name: StringThe short name of the product.
product_type: StringTODO
product_variant: StringTODO
serial_number: StringThe device’s serial number.
soc: StringThe name of the system-on-chip inside the device.
soc_architecture: StringThe architecture of the system-on-chip inside the device.
soc_serial_number: StringThe system-on-chip’s serial number.
firmware_build_date: StringThe firmware’s build date, expressed as a string.
firmware_version: StringThe firmware version, expressed as a string.
web_url: StringTOOD
Trait Implementations§
Source§impl Clone for Properties
impl Clone for Properties
Source§fn clone(&self) -> Properties
fn clone(&self) -> Properties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Properties
impl Debug for Properties
Source§impl<'de> Deserialize<'de> for Properties
impl<'de> Deserialize<'de> for Properties
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 Properties
impl PartialEq for Properties
impl Eq for Properties
impl StructuralPartialEq for Properties
Auto Trait Implementations§
impl Freeze for Properties
impl RefUnwindSafe for Properties
impl Send for Properties
impl Sync for Properties
impl Unpin for Properties
impl UnsafeUnpin for Properties
impl UnwindSafe for Properties
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.