Struct windows::ApplicationModel::Wallet::WalletItem
pub struct WalletItem(/* private fields */);
Implementations§
§impl WalletItem
impl WalletItem
pub fn DisplayName(&self) -> Result<HSTRING>
pub fn SetDisplayName(&self, value: &HSTRING) -> Result<()>
pub fn Id(&self) -> Result<HSTRING>
pub fn IsAcknowledged(&self) -> Result<bool>
pub fn SetIsAcknowledged(&self, value: bool) -> Result<()>
pub fn IssuerDisplayName(&self) -> Result<HSTRING>
pub fn SetIssuerDisplayName(&self, value: &HSTRING) -> Result<()>
pub fn LastUpdated(&self) -> Result<IReference<DateTime>>
pub fn SetLastUpdated<P0>(&self, value: P0) -> Result<()>where
P0: Param<IReference<DateTime>>,
pub fn Kind(&self) -> Result<WalletItemKind>
pub fn Barcode(&self) -> Result<WalletBarcode>
pub fn SetBarcode<P0>(&self, value: P0) -> Result<()>where
P0: Param<WalletBarcode>,
pub fn ExpirationDate(&self) -> Result<IReference<DateTime>>
pub fn SetExpirationDate<P0>(&self, value: P0) -> Result<()>where
P0: Param<IReference<DateTime>>,
pub fn Logo159x159(&self) -> Result<IRandomAccessStreamReference>
pub fn SetLogo159x159<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn Logo336x336(&self) -> Result<IRandomAccessStreamReference>
pub fn SetLogo336x336<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn Logo99x99(&self) -> Result<IRandomAccessStreamReference>
pub fn SetLogo99x99<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn DisplayMessage(&self) -> Result<HSTRING>
pub fn SetDisplayMessage(&self, value: &HSTRING) -> Result<()>
pub fn IsDisplayMessageLaunchable(&self) -> Result<bool>
pub fn SetIsDisplayMessageLaunchable(&self, value: bool) -> Result<()>
pub fn LogoText(&self) -> Result<HSTRING>
pub fn SetLogoText(&self, value: &HSTRING) -> Result<()>
pub fn HeaderColor(&self) -> Result<Color>
pub fn SetHeaderColor(&self, value: Color) -> Result<()>
pub fn BodyColor(&self) -> Result<Color>
pub fn SetBodyColor(&self, value: Color) -> Result<()>
pub fn HeaderFontColor(&self) -> Result<Color>
pub fn SetHeaderFontColor(&self, value: Color) -> Result<()>
pub fn BodyFontColor(&self) -> Result<Color>
pub fn SetBodyFontColor(&self, value: Color) -> Result<()>
pub fn HeaderBackgroundImage(&self) -> Result<IRandomAccessStreamReference>
pub fn SetHeaderBackgroundImage<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn BodyBackgroundImage(&self) -> Result<IRandomAccessStreamReference>
pub fn SetBodyBackgroundImage<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn LogoImage(&self) -> Result<IRandomAccessStreamReference>
pub fn SetLogoImage<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn PromotionalImage(&self) -> Result<IRandomAccessStreamReference>
pub fn SetPromotionalImage<P0>(&self, value: P0) -> Result<()>where
P0: Param<IRandomAccessStreamReference>,
pub fn RelevantDate(&self) -> Result<IReference<DateTime>>
pub fn SetRelevantDate<P0>(&self, value: P0) -> Result<()>where
P0: Param<IReference<DateTime>>,
pub fn RelevantDateDisplayMessage(&self) -> Result<HSTRING>
pub fn SetRelevantDateDisplayMessage(&self, value: &HSTRING) -> Result<()>
pub fn TransactionHistory(&self) -> Result<IMap<HSTRING, WalletTransaction>>
pub fn RelevantLocations(&self) -> Result<IMap<HSTRING, WalletRelevantLocation>>
pub fn IsMoreTransactionHistoryLaunchable(&self) -> Result<bool>
pub fn SetIsMoreTransactionHistoryLaunchable(&self, value: bool) -> Result<()>
pub fn DisplayProperties( &self, ) -> Result<IMap<HSTRING, WalletItemCustomProperty>>
pub fn Verbs(&self) -> Result<IMap<HSTRING, WalletVerb>>
pub fn CreateWalletItem( kind: WalletItemKind, displayname: &HSTRING, ) -> Result<WalletItem>
Trait Implementations§
§impl CanInto<IInspectable> for WalletItem
impl CanInto<IInspectable> for WalletItem
§impl CanInto<IUnknown> for WalletItem
impl CanInto<IUnknown> for WalletItem
§impl Clone for WalletItem
impl Clone for WalletItem
§fn clone(&self) -> WalletItem
fn clone(&self) -> WalletItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for WalletItem
impl Debug for WalletItem
§impl From<&WalletItem> for &IInspectable
impl From<&WalletItem> for &IInspectable
§fn from(value: &WalletItem) -> Self
fn from(value: &WalletItem) -> Self
Converts to this type from the input type.
§impl From<&WalletItem> for &IUnknown
impl From<&WalletItem> for &IUnknown
§fn from(value: &WalletItem) -> Self
fn from(value: &WalletItem) -> Self
Converts to this type from the input type.
§impl From<WalletItem> for IInspectable
impl From<WalletItem> for IInspectable
§fn from(value: WalletItem) -> Self
fn from(value: WalletItem) -> Self
Converts to this type from the input type.
§impl From<WalletItem> for IUnknown
impl From<WalletItem> for IUnknown
§fn from(value: WalletItem) -> Self
fn from(value: WalletItem) -> Self
Converts to this type from the input type.
§impl Interface for WalletItem
impl Interface for WalletItem
§const IID: GUID = <IWalletItem as windows_core::Interface>::IID
const IID: GUID = <IWalletItem as windows_core::Interface>::IID
The
GUID
associated with the interface.§fn as_raw(&self) -> *mut c_void
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
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.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for WalletItem
impl PartialEq for WalletItem
§fn eq(&self, other: &WalletItem) -> bool
fn eq(&self, other: &WalletItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for WalletItem
impl Send for WalletItem
impl StructuralPartialEq for WalletItem
impl Sync for WalletItem
Auto Trait Implementations§
impl Freeze for WalletItem
impl RefUnwindSafe for WalletItem
impl Unpin for WalletItem
impl UnwindSafe for WalletItem
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)