[][src]Struct ucare::upload::GroupInfo

pub struct GroupInfo {
    pub datetime_created: String,
    pub datetime_stored: Option<String>,
    pub file_count: u32,
    pub cdn_url: String,
    pub files: Option<Vec<FileInfo>>,
    pub url: String,
    pub id: String,
}

Group information

Fields

datetime_created: String

When group was created

datetime_stored: Option<String>

When group was stored

file_count: u32

Number of files in the group

cdn_url: String

CDN URL of the group

files: Option<Vec<FileInfo>>

Files list

url: String

Group API url to get this info

id: String

Group ID

Trait Implementations

impl Debug for GroupInfo[src]

impl<'de> Deserialize<'de> for GroupInfo[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.