pub struct AccountDashboardSettings {
pub display_name: Option<String>,
pub timezone: Option<String>,
}
Fields§
§display_name: Option<String>
The display name for this account. This is used on the Stripe Dashboard to differentiate between accounts.
timezone: Option<String>
The timezone used in the Stripe Dashboard for this account. A list of possible time zone values is maintained at the IANA Time Zone Database.
Trait Implementations§
Source§impl Clone for AccountDashboardSettings
impl Clone for AccountDashboardSettings
Source§fn clone(&self) -> AccountDashboardSettings
fn clone(&self) -> AccountDashboardSettings
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 moreSource§impl Debug for AccountDashboardSettings
impl Debug for AccountDashboardSettings
Auto Trait Implementations§
impl Freeze for AccountDashboardSettings
impl RefUnwindSafe for AccountDashboardSettings
impl Send for AccountDashboardSettings
impl Sync for AccountDashboardSettings
impl Unpin for AccountDashboardSettings
impl UnwindSafe for AccountDashboardSettings
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