pub struct UpdateExpenseCategoryRequest<'a> {
pub expense_category_id: String,
pub name: Option<String>,
pub unit_name: Option<String>,
pub unit_price: Option<f64>,
pub is_active: Option<bool>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§expense_category_id: String§name: Option<String>§unit_name: Option<String>§unit_price: Option<f64>§is_active: Option<bool>Implementations§
Source§impl<'a> UpdateExpenseCategoryRequest<'a>
impl<'a> UpdateExpenseCategoryRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for UpdateExpenseCategoryRequest<'a>
impl<'a> !RefUnwindSafe for UpdateExpenseCategoryRequest<'a>
impl<'a> Send for UpdateExpenseCategoryRequest<'a>
impl<'a> Sync for UpdateExpenseCategoryRequest<'a>
impl<'a> Unpin for UpdateExpenseCategoryRequest<'a>
impl<'a> !UnwindSafe for UpdateExpenseCategoryRequest<'a>
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