pub struct ItemDetailCreator {
pub id: u64,
pub name: String,
pub kind: u64,
pub is_verified: bool,
}Fields§
§id: u64§name: String§kind: u64§is_verified: boolTrait Implementations§
Source§impl Clone for ItemDetailCreator
impl Clone for ItemDetailCreator
Source§fn clone(&self) -> ItemDetailCreator
fn clone(&self) -> ItemDetailCreator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ItemDetailCreator
impl Debug for ItemDetailCreator
Source§impl<'de> Deserialize<'de> for ItemDetailCreator
impl<'de> Deserialize<'de> for ItemDetailCreator
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
impl Eq for ItemDetailCreator
Source§impl PartialEq for ItemDetailCreator
impl PartialEq for ItemDetailCreator
Source§impl Serialize for ItemDetailCreator
impl Serialize for ItemDetailCreator
impl StructuralPartialEq for ItemDetailCreator
Auto Trait Implementations§
impl Freeze for ItemDetailCreator
impl RefUnwindSafe for ItemDetailCreator
impl Send for ItemDetailCreator
impl Sync for ItemDetailCreator
impl Unpin for ItemDetailCreator
impl UnsafeUnpin for ItemDetailCreator
impl UnwindSafe for ItemDetailCreator
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