[][src]Struct vapix::v4::basic_device_info::Properties

pub struct Properties {
    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,
}

A set of basic device properties.

Fields

brand: String

The brand of the device, likely "AXIS".

hardware_id: String

The hardware ID, believed to be an internal AXIS part identifier.

product_full_name: String

The full name of the product.

product_number: String

The product number seen in typical product catalogs.

product_short_name: String

The short name of the product.

product_type: String

TODO

product_variant: String

TODO

serial_number: String

The device's serial number.

soc: String

The name of the system-on-chip inside the device.

soc_architecture: String

The architecture of the system-on-chip inside the device.

soc_serial_number: String

The system-on-chip's serial number.

firmware_build_date: String

The firmware's build date, expressed as a string.

firmware_version: String

The firmware version, expressed as a string.

web_url: String

TOOD

Trait Implementations

impl Clone for Properties[src]

impl Debug for Properties[src]

impl<'de> Deserialize<'de> for Properties[src]

impl Eq for Properties[src]

impl PartialEq<Properties> for Properties[src]

impl StructuralEq for Properties[src]

impl StructuralPartialEq for Properties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,