Enum dlt_core::dlt::StringCoding
source · pub enum StringCoding {
ASCII,
UTF8,
Reserved(u8),
}
Expand description
Defines what string type is used, ASCII
or UTF8
Variants
ASCII
UTF8
Reserved(u8)
Trait Implementations
sourceimpl Clone for StringCoding
impl Clone for StringCoding
sourcefn clone(&self) -> StringCoding
fn clone(&self) -> StringCoding
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for StringCoding
impl Debug for StringCoding
sourceimpl PartialEq<StringCoding> for StringCoding
impl PartialEq<StringCoding> for StringCoding
sourcefn eq(&self, other: &StringCoding) -> bool
fn eq(&self, other: &StringCoding) -> bool
sourceimpl Serialize for StringCoding
impl Serialize for StringCoding
impl StructuralPartialEq for StringCoding
Auto Trait Implementations
impl RefUnwindSafe for StringCoding
impl Send for StringCoding
impl Sync for StringCoding
impl Unpin for StringCoding
impl UnwindSafe for StringCoding
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more