pub struct FeaturedTag {
pub id: String,
pub name: String,
pub url: String,
pub statuses_count: u64,
pub last_status_at: String,
}Expand description
Represents a tag that is featured on a user’s profile.
Fields§
§id: StringThe internal ID of the featured tag.
name: StringThe name of the tag.
url: StringThe URL to the tag’s page on the instance.
statuses_count: u64The number of statuses posted with this tag.
last_status_at: StringThe time of the last status posted with this tag (ISO 8601).
Trait Implementations§
Source§impl Clone for FeaturedTag
impl Clone for FeaturedTag
Source§fn clone(&self) -> FeaturedTag
fn clone(&self) -> FeaturedTag
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 FeaturedTag
impl Debug for FeaturedTag
Source§impl<'de> Deserialize<'de> for FeaturedTag
impl<'de> Deserialize<'de> for FeaturedTag
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 FeaturedTag
impl RefUnwindSafe for FeaturedTag
impl Send for FeaturedTag
impl Sync for FeaturedTag
impl Unpin for FeaturedTag
impl UnwindSafe for FeaturedTag
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