pub enum CDTextEntryDataType {
String(String),
Data(Vec<u8>),
}Expand description
Data can be represented as string or raw data.
Variants§
Trait Implementations§
Source§impl Clone for CDTextEntryDataType
impl Clone for CDTextEntryDataType
Source§fn clone(&self) -> CDTextEntryDataType
fn clone(&self) -> CDTextEntryDataType
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 moreAuto Trait Implementations§
impl Freeze for CDTextEntryDataType
impl RefUnwindSafe for CDTextEntryDataType
impl Send for CDTextEntryDataType
impl Sync for CDTextEntryDataType
impl Unpin for CDTextEntryDataType
impl UnwindSafe for CDTextEntryDataType
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