[][src]Struct splits_io_api::Attachment

pub struct Attachment {
    pub id: Uuid,
    pub created_at: Box<str>,
    pub filename: Box<str>,
    pub url: Box<str>,
}

A file that is attached to a Race.

API Documentation

Fields

id: Uuid

The unique ID of the attachment.

created_at: Box<str>

The time and date at which this attachment was created on Splits.io. This field conforms to ISO 8601.

filename: Box<str>

The filename of the attachment.

url: Box<str>

The URL to use in order to download the attachment.

Methods

impl Attachment[src]

pub async fn download<'_, '_>(
    &'_ self,
    client: &'_ Client
) -> Result<impl Deref<Target = [u8]>, Error>
[src]

Downloads the attachment.

Trait Implementations

impl Debug for Attachment[src]

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