pub struct CategorySubcategory {
pub id: i64,
pub name: String,
pub offer_count: u32,
pub subcategory_type: CategorySubcategoryType,
pub is_active: bool,
}Fields§
§id: i64§name: String§offer_count: u32§subcategory_type: CategorySubcategoryType§is_active: boolTrait Implementations§
Source§impl Clone for CategorySubcategory
impl Clone for CategorySubcategory
Source§fn clone(&self) -> CategorySubcategory
fn clone(&self) -> CategorySubcategory
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 moreAuto Trait Implementations§
impl Freeze for CategorySubcategory
impl RefUnwindSafe for CategorySubcategory
impl Send for CategorySubcategory
impl Sync for CategorySubcategory
impl Unpin for CategorySubcategory
impl UnwindSafe for CategorySubcategory
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