pub enum PhoneAlarmTelemetry {
LastOutOfService(CiscoIpPhoneAlarm),
Opaque(OpaquePhoneAlarm),
}Expand description
Parsed alarm telemetry or a bounded lossless unknown schema.
Variants§
LastOutOfService(CiscoIpPhoneAlarm)
The supported out-of-service schema, retained as typed parameters.
Opaque(OpaquePhoneAlarm)
A syntactically valid unsupported schema retained losslessly.
Implementations§
Trait Implementations§
Source§impl Clone for PhoneAlarmTelemetry
impl Clone for PhoneAlarmTelemetry
Source§fn clone(&self) -> PhoneAlarmTelemetry
fn clone(&self) -> PhoneAlarmTelemetry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PhoneAlarmTelemetry
impl Debug for PhoneAlarmTelemetry
impl Eq for PhoneAlarmTelemetry
Source§impl PartialEq for PhoneAlarmTelemetry
impl PartialEq for PhoneAlarmTelemetry
impl StructuralPartialEq for PhoneAlarmTelemetry
Auto Trait Implementations§
impl Freeze for PhoneAlarmTelemetry
impl RefUnwindSafe for PhoneAlarmTelemetry
impl Send for PhoneAlarmTelemetry
impl Sync for PhoneAlarmTelemetry
impl Unpin for PhoneAlarmTelemetry
impl UnsafeUnpin for PhoneAlarmTelemetry
impl UnwindSafe for PhoneAlarmTelemetry
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