pub struct StoreCurrencySettingsOutput {
pub base_currency: String,
pub enabled_currencies: Vec<String>,
pub auto_convert: bool,
pub rounding_mode: String,
}Fields§
§base_currency: String§enabled_currencies: Vec<String>§auto_convert: bool§rounding_mode: StringTrait Implementations§
Source§impl Clone for StoreCurrencySettingsOutput
impl Clone for StoreCurrencySettingsOutput
Source§fn clone(&self) -> StoreCurrencySettingsOutput
fn clone(&self) -> StoreCurrencySettingsOutput
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 FromNapiValue for StoreCurrencySettingsOutput
impl FromNapiValue for StoreCurrencySettingsOutput
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl ToNapiValue for StoreCurrencySettingsOutput
impl ToNapiValue for StoreCurrencySettingsOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: StoreCurrencySettingsOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: StoreCurrencySettingsOutput, ) -> Result<napi_value>
Safety Read more
Source§impl ValidateNapiValue for StoreCurrencySettingsOutput
impl ValidateNapiValue for StoreCurrencySettingsOutput
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for StoreCurrencySettingsOutput
impl RefUnwindSafe for StoreCurrencySettingsOutput
impl Send for StoreCurrencySettingsOutput
impl Sync for StoreCurrencySettingsOutput
impl Unpin for StoreCurrencySettingsOutput
impl UnsafeUnpin for StoreCurrencySettingsOutput
impl UnwindSafe for StoreCurrencySettingsOutput
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