Struct oaidl::DecWrapper[][src]

pub struct DecWrapper(_);

Helper type for the OLE/COM+ type DECIMAL

Methods

impl DecWrapper
[src]

wraps a Decimal from rust_decimal

Get access to the internal value, consuming it in the process

Get borrow of internal value

Get mutable borrow of internal value

Trait Implementations

impl SafeArrayElement for DecWrapper
[src]

SFTYPE: u32 = VT_DECIMAL

This is the VT value used to create the SAFEARRAY

gets a type from the safearray at the specified index (default impls use SafeArrayGetElement)

puts a type into the safearray at the specified index (default impls use SafeArrayPutElement)

impl Debug for DecWrapper
[src]

Formats the value using the given formatter. Read more

impl Clone for DecWrapper
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DecWrapper
[src]

impl Eq for DecWrapper
[src]

impl Hash for DecWrapper
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for DecWrapper
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq for DecWrapper
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for DecWrapper
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl From<DECIMAL> for DecWrapper
[src]

Performs the conversion.

impl<'d> From<&'d DECIMAL> for DecWrapper
[src]

Performs the conversion.

impl<'d> From<&'d mut DECIMAL> for DecWrapper
[src]

Performs the conversion.

impl From<DecWrapper> for DECIMAL
[src]

Performs the conversion.

impl<'d> From<&'d DecWrapper> for DECIMAL
[src]

Performs the conversion.

impl<'d> From<&'d mut DecWrapper> for DECIMAL
[src]

Performs the conversion.

impl From<DecWrapper> for Decimal
[src]

Performs the conversion.

impl<'w> From<&'w DecWrapper> for Decimal
[src]

Performs the conversion.

impl<'w> From<&'w mut DecWrapper> for Decimal
[src]

Performs the conversion.

impl From<Decimal> for DecWrapper
[src]

Performs the conversion.

impl<'d> From<&'d Decimal> for DecWrapper
[src]

Performs the conversion.

impl<'d> From<&'d mut Decimal> for DecWrapper
[src]

Performs the conversion.

impl AsRef<Decimal> for DecWrapper
[src]

Performs the conversion.

impl VariantExt for DecWrapper
[src]

VARTYPE: u32 = VT_DECIMAL

VARTYPE constant value for the type

Call this associated function on a Ptr to obtain a value T

Convert a value of type T into a Ptr

Auto Trait Implementations

impl Send for DecWrapper

impl Sync for DecWrapper