pub struct ISWbemDateTime(/* private fields */);

Implementations§

§

impl ISWbemDateTime

pub unsafe fn Value(&self) -> Result<BSTR>

pub unsafe fn SetValue<P0>(&self, strvalue: P0) -> Result<()>
where P0: IntoParam<BSTR>,

pub unsafe fn Year(&self) -> Result<i32>

pub unsafe fn SetYear(&self, iyear: i32) -> Result<()>

pub unsafe fn YearSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetYearSpecified<P0>(&self, byearspecified: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Month(&self) -> Result<i32>

pub unsafe fn SetMonth(&self, imonth: i32) -> Result<()>

pub unsafe fn MonthSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetMonthSpecified<P0>(&self, bmonthspecified: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Day(&self) -> Result<i32>

pub unsafe fn SetDay(&self, iday: i32) -> Result<()>

pub unsafe fn DaySpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetDaySpecified<P0>(&self, bdayspecified: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Hours(&self) -> Result<i32>

pub unsafe fn SetHours(&self, ihours: i32) -> Result<()>

pub unsafe fn HoursSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetHoursSpecified<P0>(&self, bhoursspecified: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Minutes(&self) -> Result<i32>

pub unsafe fn SetMinutes(&self, iminutes: i32) -> Result<()>

pub unsafe fn MinutesSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetMinutesSpecified<P0>( &self, bminutesspecified: P0 ) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Seconds(&self) -> Result<i32>

pub unsafe fn SetSeconds(&self, iseconds: i32) -> Result<()>

pub unsafe fn SecondsSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetSecondsSpecified<P0>( &self, bsecondsspecified: P0 ) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn Microseconds(&self) -> Result<i32>

pub unsafe fn SetMicroseconds(&self, imicroseconds: i32) -> Result<()>

pub unsafe fn MicrosecondsSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetMicrosecondsSpecified<P0>( &self, bmicrosecondsspecified: P0 ) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn UTC(&self) -> Result<i32>

pub unsafe fn SetUTC(&self, iutc: i32) -> Result<()>

pub unsafe fn UTCSpecified(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetUTCSpecified<P0>(&self, butcspecified: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn IsInterval(&self) -> Result<VARIANT_BOOL>

pub unsafe fn SetIsInterval<P0>(&self, bisinterval: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn GetVarDate<P0>(&self, bislocal: P0) -> Result<f64>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn SetVarDate<P0>(&self, dvardate: f64, bislocal: P0) -> Result<()>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn GetFileTime<P0>(&self, bislocal: P0) -> Result<BSTR>
where P0: IntoParam<VARIANT_BOOL>,

pub unsafe fn SetFileTime<P0, P1>( &self, strfiletime: P0, bislocal: P1 ) -> Result<()>
where P0: IntoParam<BSTR>, P1: IntoParam<VARIANT_BOOL>,

Trait Implementations§

§

impl Clone for ISWbemDateTime

§

fn clone(&self) -> ISWbemDateTime

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
§

impl Debug for ISWbemDateTime

§

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

Formats the value using the given formatter. Read more
§

impl From<&ISWbemDateTime> for &IDispatch

§

fn from(value: &ISWbemDateTime) -> Self

Converts to this type from the input type.
§

impl From<&ISWbemDateTime> for &IUnknown

§

fn from(value: &ISWbemDateTime) -> Self

Converts to this type from the input type.
§

impl From<ISWbemDateTime> for IDispatch

§

fn from(value: ISWbemDateTime) -> Self

Converts to this type from the input type.
§

impl From<ISWbemDateTime> for IUnknown

§

fn from(value: ISWbemDateTime) -> Self

Converts to this type from the input type.
§

impl Interface for ISWbemDateTime

§

fn as_raw(&self) -> *mut c_void

Returns the raw COM interface pointer. The resulting pointer continues to be owned by the Interface implementation.
§

fn into_raw(self) -> *mut c_void

Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§

unsafe fn from_raw(raw: *mut c_void) -> Self

Creates an Interface by taking ownership of the raw COM interface pointer. Read more
§

unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>

Creates an Interface that is valid so long as the raw COM interface pointer is valid. Read more
§

fn cast<T>(&self) -> Result<T, Error>
where T: Interface,

Attempts to cast the current interface to another interface using QueryInterface. Read more
§

fn downgrade(&self) -> Result<Weak<Self>, Error>

Attempts to create a Weak reference to this object.
§

unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT

Call QueryInterface on this interface Read more
§

impl PartialEq for ISWbemDateTime

§

fn eq(&self, other: &ISWbemDateTime) -> 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.
§

impl Eq for ISWbemDateTime

§

impl StructuralPartialEq for ISWbemDateTime

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

§

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

§

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.