pub struct Tag {
pub tag_id: String,
pub parent_id: Option<String>,
pub weight: u32,
pub local_spoiler: bool,
pub global_spoiler: bool,
pub verified: bool,
pub updated: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub picture_url: Option<String>,
}Fields§
§tag_id: String§parent_id: Option<String>§weight: u32§local_spoiler: bool§global_spoiler: bool§verified: bool§updated: Option<String>§name: Option<String>§description: Option<String>§picture_url: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tag
impl<'de> Deserialize<'de> for Tag
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 StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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