pub struct ArtMetadataOwned {
pub title: String,
pub description: Option<String>,
pub component: Option<String>,
pub category: Option<String>,
pub tags: Vec<String>,
pub status: ArtStatus,
pub order: Option<u32>,
}Fields§
§title: String§description: Option<String>§component: Option<String>§category: Option<String>§status: ArtStatus§order: Option<u32>Trait Implementations§
Source§impl Clone for ArtMetadataOwned
impl Clone for ArtMetadataOwned
Source§fn clone(&self) -> ArtMetadataOwned
fn clone(&self) -> ArtMetadataOwned
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 ArtMetadataOwned
impl Debug for ArtMetadataOwned
Source§impl<'de> Deserialize<'de> for ArtMetadataOwned
impl<'de> Deserialize<'de> for ArtMetadataOwned
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
Auto Trait Implementations§
impl Freeze for ArtMetadataOwned
impl RefUnwindSafe for ArtMetadataOwned
impl Send for ArtMetadataOwned
impl Sync for ArtMetadataOwned
impl Unpin for ArtMetadataOwned
impl UnsafeUnpin for ArtMetadataOwned
impl UnwindSafe for ArtMetadataOwned
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