pub struct PartialTag {
pub id: i64,
pub name: String,
pub description: Option<String>,
pub date_modified: Option<String>,
pub aliases: Option<Vec<String>>,
pub category: Option<String>,
}
Fields§
§id: i64
§name: String
§description: Option<String>
§date_modified: Option<String>
§aliases: Option<Vec<String>>
§category: Option<String>
Trait Implementations§
Source§impl Clone for PartialTag
impl Clone for PartialTag
Source§fn clone(&self) -> PartialTag
fn clone(&self) -> PartialTag
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 Debug for PartialTag
impl Debug for PartialTag
Source§impl Default for PartialTag
impl Default for PartialTag
Source§impl<'de> Deserialize<'de> for PartialTag
impl<'de> Deserialize<'de> for PartialTag
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 From<Tag> for PartialTag
impl From<Tag> for PartialTag
Auto Trait Implementations§
impl Freeze for PartialTag
impl RefUnwindSafe for PartialTag
impl Send for PartialTag
impl Sync for PartialTag
impl Unpin for PartialTag
impl UnwindSafe for PartialTag
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