[][src]Struct tweet::Hashtag

pub struct Hashtag {
    pub indices: Vec<u32>,
    pub text: String,
}

Represents a hashtag

Fields

indices: Vec<u32>

The indices of the hastag in the original tweet message

text: String

The text of the hashtag

Trait Implementations

impl Debug for Hashtag[src]

impl Serialize for Hashtag[src]

impl<'de> Deserialize<'de> for Hashtag[src]

Auto Trait Implementations

impl Send for Hashtag

impl Sync for Hashtag

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]