Enum PropVariant

Source
pub enum PropVariant {
Show 16 variants Empty, I2(i16), I4(i32), R4(f32), R8(f64), Date(SYSTEMTIME), Bstr(String), Dispatch(IDispatch), Bool(bool), Unknown(IUnknown), I1(i8), UI1(u8), UI2(u16), UI4(u32), I8(i64), UI8(u64),
}
Available on crate feature oleaut only.
Expand description

High-level representation of the PROPVARIANT struct, which is automatically converted into its low-level representation when needed.

Not to be confused with the similar Variant.

The fields are named according to the VARENUM enumeration.

Variants§

§

Empty

Nothing.

§

I2(i16)

2 byte signed int (i16).

§

I4(i32)

4 byte signed int (i32).

§

R4(f32)

4 byte real (f32).

§

R8(f64)

8 byte real (f64).

§

Date(SYSTEMTIME)

Date.

§

Bstr(String)

OLE Automation string.

§

Dispatch(IDispatch)

IDispatch pointer.

§

Bool(bool)

Boolean value (bool).

§

Unknown(IUnknown)

IUnknown pointer.

§

I1(i8)

Signed char (i8).

§

UI1(u8)

Unsigned char (u8).

§

UI2(u16)

Unsigned short (u16).

§

UI4(u32)

Unsigned long (u32).

§

I8(i64)

Signed 64-bit int (i64).

§

UI8(u64)

Unsigned 64-bit int (u64).

Implementations§

Source§

impl PropVariant

Source

pub fn from_str(s: impl AsRef<str>) -> Self

Creates a PropVariant::Bstr from a string.

Source

pub fn from_opt_str(s: Option<impl AsRef<str>>) -> Self

Creates a PropVariant::Bstr if a string is present, otherwise creates a PropVariant::Empty.

Trait Implementations§

Source§

impl Clone for PropVariant

Source§

fn clone(&self) -> PropVariant

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 Default for PropVariant

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.