pub struct IssuingPersonalizationDesignPreferences {
pub is_default: bool,
pub is_platform_default: Option<bool>,
}
Fields§
§is_default: bool
Whether we use this personalization design to create cards when one isn’t specified. A connected account uses the Connect platform’s default design if no personalization design is set as the default design.
is_platform_default: Option<bool>
Whether this personalization design is used to create cards when one is not specified and a default for this connected account does not exist.
Trait Implementations§
Source§impl Clone for IssuingPersonalizationDesignPreferences
impl Clone for IssuingPersonalizationDesignPreferences
Source§fn clone(&self) -> IssuingPersonalizationDesignPreferences
fn clone(&self) -> IssuingPersonalizationDesignPreferences
Returns a duplicate 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 moreimpl Copy for IssuingPersonalizationDesignPreferences
Auto Trait Implementations§
impl Freeze for IssuingPersonalizationDesignPreferences
impl RefUnwindSafe for IssuingPersonalizationDesignPreferences
impl Send for IssuingPersonalizationDesignPreferences
impl Sync for IssuingPersonalizationDesignPreferences
impl Unpin for IssuingPersonalizationDesignPreferences
impl UnwindSafe for IssuingPersonalizationDesignPreferences
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