Embassy
embassy-usb

Crates

git

Versions

default

Flavors

Enum embassy_usb::msos::PropertyData

source ·
pub enum PropertyData<'a> {
    Sz(&'a str),
    ExpandSz(&'a str),
    Binary(&'a [u8]),
    DwordLittleEndian(u32),
    DwordBigEndian(u32),
    Link(&'a str),
    RegMultiSz(&'a [&'a str]),
}
Expand description

Data values that can be encoded into a registry property descriptor

Variants§

§

Sz(&'a str)

A registry property containing a string.

§

ExpandSz(&'a str)

A registry property containing a string that expands environment variables.

§

Binary(&'a [u8])

A registry property containing binary data.

§

DwordLittleEndian(u32)

A registry property containing a little-endian 32-bit integer.

§

DwordBigEndian(u32)

A registry property containing a big-endian 32-bit integer.

A registry property containing a string that contains a symbolic link.

§

RegMultiSz(&'a [&'a str])

A registry property containing multiple strings.

Implementations§

source§

impl<'a> PropertyData<'a>

source

pub fn kind(&self) -> PropertyDataType

Gets the PropertyDataType for this property value

source

pub fn size(&self) -> usize

Gets the size (in bytes) of this property value when encoded.

source

pub fn write(&self, buf: &mut [u8]) -> usize

Encodes the data for this property value and writes it to buf.

Trait Implementations§

source§

impl<'a> Clone for PropertyData<'a>

source§

fn clone(&self) -> PropertyData<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for PropertyData<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Format for PropertyData<'a>

source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.
source§

impl<'a> PartialEq for PropertyData<'a>

source§

fn eq(&self, other: &PropertyData<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Copy for PropertyData<'a>

source§

impl<'a> Eq for PropertyData<'a>

source§

impl<'a> StructuralPartialEq for PropertyData<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for PropertyData<'a>

§

impl<'a> RefUnwindSafe for PropertyData<'a>

§

impl<'a> Send for PropertyData<'a>

§

impl<'a> Sync for PropertyData<'a>

§

impl<'a> Unpin for PropertyData<'a>

§

impl<'a> UnwindSafe for PropertyData<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.