pub struct CreateUpdateBatchCategoryModel {
pub created_count: Option<i64>,
pub updated_count: Option<i64>,
}Fields§
§created_count: Option<i64>Number of the new created categories
updated_count: Option<i64>Number of the existing categories updated
Implementations§
Trait Implementations§
Source§impl Clone for CreateUpdateBatchCategoryModel
impl Clone for CreateUpdateBatchCategoryModel
Source§fn clone(&self) -> CreateUpdateBatchCategoryModel
fn clone(&self) -> CreateUpdateBatchCategoryModel
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 Default for CreateUpdateBatchCategoryModel
impl Default for CreateUpdateBatchCategoryModel
Source§fn default() -> CreateUpdateBatchCategoryModel
fn default() -> CreateUpdateBatchCategoryModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateUpdateBatchCategoryModel
impl<'de> Deserialize<'de> for CreateUpdateBatchCategoryModel
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 CreateUpdateBatchCategoryModel
impl PartialEq for CreateUpdateBatchCategoryModel
Source§fn eq(&self, other: &CreateUpdateBatchCategoryModel) -> bool
fn eq(&self, other: &CreateUpdateBatchCategoryModel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateUpdateBatchCategoryModel
Auto Trait Implementations§
impl Freeze for CreateUpdateBatchCategoryModel
impl RefUnwindSafe for CreateUpdateBatchCategoryModel
impl Send for CreateUpdateBatchCategoryModel
impl Sync for CreateUpdateBatchCategoryModel
impl Unpin for CreateUpdateBatchCategoryModel
impl UnwindSafe for CreateUpdateBatchCategoryModel
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