pub struct ListIssuingPersonalizationDesignPreferences {
pub is_default: Option<bool>,
pub is_platform_default: Option<bool>,
}Expand description
Only return personalization designs with the given preferences.
Fields§
§is_default: Option<bool>Only return the personalization design that’s set as the default. A connected account uses the Connect platform’s default design if no personalization design is set as the default.
is_platform_default: Option<bool>Only return the personalization design that is set as the Connect platform’s default. This parameter is only applicable to connected accounts.
Implementations§
Trait Implementations§
Source§impl Clone for ListIssuingPersonalizationDesignPreferences
impl Clone for ListIssuingPersonalizationDesignPreferences
Source§fn clone(&self) -> ListIssuingPersonalizationDesignPreferences
fn clone(&self) -> ListIssuingPersonalizationDesignPreferences
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ListIssuingPersonalizationDesignPreferences
impl PartialEq for ListIssuingPersonalizationDesignPreferences
Source§fn eq(&self, other: &ListIssuingPersonalizationDesignPreferences) -> bool
fn eq(&self, other: &ListIssuingPersonalizationDesignPreferences) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ListIssuingPersonalizationDesignPreferences
impl Eq for ListIssuingPersonalizationDesignPreferences
impl StructuralPartialEq for ListIssuingPersonalizationDesignPreferences
Auto Trait Implementations§
impl Freeze for ListIssuingPersonalizationDesignPreferences
impl RefUnwindSafe for ListIssuingPersonalizationDesignPreferences
impl Send for ListIssuingPersonalizationDesignPreferences
impl Sync for ListIssuingPersonalizationDesignPreferences
impl Unpin for ListIssuingPersonalizationDesignPreferences
impl UnsafeUnpin for ListIssuingPersonalizationDesignPreferences
impl UnwindSafe for ListIssuingPersonalizationDesignPreferences
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