[][src]Struct vndb_rs::common::get::ulist::GetUListResponse

pub struct GetUListResponse {
    pub user_id: usize,
    pub vn_id: usize,
    pub added: usize,
    pub lastmod: usize,
    pub voted: Option<usize>,
    pub vote: Option<usize>,
    pub notes: Option<String>,
    pub started: Option<String>,
    pub finished: Option<String>,
    pub labels: Option<Vec<Label>>,
}

All fields returned by get ulist method fields are either Some or None depending on GetFlag param passed to get function

Fields

user_id: usizevn_id: usizeadded: usize

Unix timestamp of when this item has been added.

lastmod: usize

Unix timestamp of when this item has been added.

voted: Option<usize>

Unix timestamp when the vote has been cast.

vote: Option<usize>

Vote between 10 and 100.

notes: Option<String>started: Option<String>finished: Option<String>labels: Option<Vec<Label>>

Trait Implementations

impl Debug for GetUListResponse[src]

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

impl PartialEq<GetUListResponse> for GetUListResponse[src]

impl StructuralPartialEq for GetUListResponse[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.