pub enum HDataTypes {
HuaweiString(Point<String>),
HuaweiU16(Point<u16>),
HuaweiU32(Point<u32>),
HuaweiI16(Point<i16>),
HuaweiI32(Point<i32>),
}Variants§
HuaweiString(Point<String>)
HuaweiU16(Point<u16>)
HuaweiU32(Point<u32>)
HuaweiI16(Point<i16>)
HuaweiI32(Point<i32>)
Trait Implementations§
Source§impl Clone for HDataTypes
impl Clone for HDataTypes
Source§fn clone(&self) -> HDataTypes
fn clone(&self) -> HDataTypes
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 HDataTypes
impl Debug for HDataTypes
Source§impl HuaweiTypes for HDataTypes
impl HuaweiTypes for HDataTypes
fn new_string(data: &str) -> HDataTypes
fn new_u16(data: u16) -> HDataTypes
fn new_u32(data: u32) -> HDataTypes
fn new_i16(data: i16) -> HDataTypes
fn new_i32(data: i32) -> HDataTypes
Auto Trait Implementations§
impl Freeze for HDataTypes
impl RefUnwindSafe for HDataTypes
impl Send for HDataTypes
impl Sync for HDataTypes
impl Unpin for HDataTypes
impl UnwindSafe for HDataTypes
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