pub struct ItemDetailAsset {
pub id: u64,
pub name: String,
pub description: String,
pub type_id: u32,
pub duration: u32,
pub visibility: u32,
pub is_endorsed: bool,
pub has_scripts: bool,
pub is_asset_hash_approved: bool,
pub created: DateTime,
pub updated: DateTime,
pub genres: Vec<String>,
}Fields§
§id: u64§name: String§description: String§type_id: u32§duration: u32§visibility: u32§is_endorsed: bool§has_scripts: bool§is_asset_hash_approved: bool§created: DateTime§updated: DateTime§genres: Vec<String>Trait Implementations§
Source§impl Clone for ItemDetailAsset
impl Clone for ItemDetailAsset
Source§fn clone(&self) -> ItemDetailAsset
fn clone(&self) -> ItemDetailAsset
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 ItemDetailAsset
impl Debug for ItemDetailAsset
Source§impl<'de> Deserialize<'de> for ItemDetailAsset
impl<'de> Deserialize<'de> for ItemDetailAsset
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 ItemDetailAsset
Source§impl PartialEq for ItemDetailAsset
impl PartialEq for ItemDetailAsset
Source§impl Serialize for ItemDetailAsset
impl Serialize for ItemDetailAsset
impl StructuralPartialEq for ItemDetailAsset
Auto Trait Implementations§
impl Freeze for ItemDetailAsset
impl RefUnwindSafe for ItemDetailAsset
impl Send for ItemDetailAsset
impl Sync for ItemDetailAsset
impl Unpin for ItemDetailAsset
impl UnsafeUnpin for ItemDetailAsset
impl UnwindSafe for ItemDetailAsset
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