pub struct TimeTrackingPrefs {
pub work_week_start_date: Option<String>,
pub mark_time_entries_billable: Option<bool>,
pub show_bill_rate_to_all: Option<bool>,
pub using_sales_tax: Option<bool>,
pub bill_customers: Option<bool>,
}Expand description
Time Tracking Preferences
Represents the preferences for time tracking in QuickBooks.
Fields§
§work_week_start_date: Option<String>The start date of the work week.
mark_time_entries_billable: Option<bool>Indicates if time entries should be marked as billable.
show_bill_rate_to_all: Option<bool>Indicates if the bill rate should be shown to all users.
using_sales_tax: Option<bool>Indicates if sales tax is being used.
bill_customers: Option<bool>Indicates if customers should be billed.
Trait Implementations§
Source§impl Clone for TimeTrackingPrefs
impl Clone for TimeTrackingPrefs
Source§fn clone(&self) -> TimeTrackingPrefs
fn clone(&self) -> TimeTrackingPrefs
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 TimeTrackingPrefs
impl Debug for TimeTrackingPrefs
Source§impl Default for TimeTrackingPrefs
impl Default for TimeTrackingPrefs
Source§fn default() -> TimeTrackingPrefs
fn default() -> TimeTrackingPrefs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeTrackingPrefswhere
TimeTrackingPrefs: Default,
impl<'de> Deserialize<'de> for TimeTrackingPrefswhere
TimeTrackingPrefs: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TimeTrackingPrefs
impl PartialEq for TimeTrackingPrefs
Source§impl Serialize for TimeTrackingPrefs
impl Serialize for TimeTrackingPrefs
impl StructuralPartialEq for TimeTrackingPrefs
Auto Trait Implementations§
impl Freeze for TimeTrackingPrefs
impl RefUnwindSafe for TimeTrackingPrefs
impl Send for TimeTrackingPrefs
impl Sync for TimeTrackingPrefs
impl Unpin for TimeTrackingPrefs
impl UnwindSafe for TimeTrackingPrefs
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