Struct sep2_common::packages::edev::AbstractDevice
source · pub struct AbstractDevice {Show 14 fields
pub configuration_link: Option<ConfigurationLink>,
pub der_list_link: Option<DERListLink>,
pub device_category: Option<DeviceCategoryType>,
pub device_information_link: Option<DeviceInformationLink>,
pub device_status_link: Option<DeviceStatusLink>,
pub file_status_link: Option<FileStatusLink>,
pub ip_interface_list_link: Option<IPInterfaceListLink>,
pub lfdi: Option<HexBinary160>,
pub load_shed_availability_list_link: Option<LoadShedAvailabilityListLink>,
pub log_event_list_link: Option<LogEventListLink>,
pub power_status_link: Option<PowerStatusLink>,
pub sfdi: SFDIType,
pub subscribable: Option<SubscribableType>,
pub href: Option<String>,
}
Available on crate feature
edev
only.Fields§
§configuration_link: Option<ConfigurationLink>
§der_list_link: Option<DERListLink>
§device_category: Option<DeviceCategoryType>
This field is for use in devices that can adjust energy usage (e.g., demand response, distributed energy resources). For devices that do not respond to EndDeviceControls or DERControls (for instance, an ESI), this field should not have any bits set.
device_information_link: Option<DeviceInformationLink>
§device_status_link: Option<DeviceStatusLink>
§file_status_link: Option<FileStatusLink>
§ip_interface_list_link: Option<IPInterfaceListLink>
§lfdi: Option<HexBinary160>
Long form of device identifier. See the Security section for additional details.
load_shed_availability_list_link: Option<LoadShedAvailabilityListLink>
§log_event_list_link: Option<LogEventListLink>
§power_status_link: Option<PowerStatusLink>
§sfdi: SFDIType
Short form of device identifier, WITH the checksum digit. See the Security section for additional details.
subscribable: Option<SubscribableType>
Indicates whether or not subscriptions are supported for this resource, and whether or not conditional (thresholds) are supported. If not specified, is “not subscribable” (0).
href: Option<String>
A reference to the resource address (URI). Required in a response to a GET, ignored otherwise.
Trait Implementations§
source§impl Clone for AbstractDevice
impl Clone for AbstractDevice
source§fn clone(&self) -> AbstractDevice
fn clone(&self) -> AbstractDevice
Returns a copy 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 AbstractDevice
impl Debug for AbstractDevice
source§impl Default for AbstractDevice
impl Default for AbstractDevice
source§fn default() -> AbstractDevice
fn default() -> AbstractDevice
Returns the “default value” for a type. Read more
source§impl PartialEq<AbstractDevice> for AbstractDevice
impl PartialEq<AbstractDevice> for AbstractDevice
source§fn eq(&self, other: &AbstractDevice) -> bool
fn eq(&self, other: &AbstractDevice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SEAbstractDevice for AbstractDevice
impl SEAbstractDevice for AbstractDevice
fn configuration_link(&self) -> Option<&ConfigurationLink>
fn der_list_link(&self) -> Option<&DERListLink>
fn device_category(&self) -> Option<DeviceCategoryType>
fn device_information_link(&self) -> Option<&DeviceInformationLink>
fn device_status_link(&self) -> Option<&DeviceStatusLink>
fn file_status_link(&self) -> Option<&FileStatusLink>
fn ip_interface_list_link(&self) -> Option<&IPInterfaceListLink>
fn lfdi(&self) -> Option<&HexBinary160>
fn load_shed_availability_list_link( &self ) -> Option<&LoadShedAvailabilityListLink>
fn log_event_list_link(&self) -> Option<&LogEventListLink>
fn power_status_link(&self) -> Option<&PowerStatusLink>
fn sfdi(&self) -> SFDIType
source§impl SEResource for AbstractDevice
impl SEResource for AbstractDevice
source§impl SESubscribableResource for AbstractDevice
impl SESubscribableResource for AbstractDevice
fn subscribable(&self) -> Option<SubscribableType>
source§impl YaDeserialize for AbstractDevice
impl YaDeserialize for AbstractDevice
source§impl YaSerialize for AbstractDevice
impl YaSerialize for AbstractDevice
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for AbstractDevice
impl StructuralEq for AbstractDevice
impl StructuralPartialEq for AbstractDevice
Auto Trait Implementations§
impl RefUnwindSafe for AbstractDevice
impl Send for AbstractDevice
impl Sync for AbstractDevice
impl Unpin for AbstractDevice
impl UnwindSafe for AbstractDevice
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