[][src]Struct firefly_iii::models::attachment_read::AttachmentRead

pub struct AttachmentRead {
    pub _type: String,
    pub id: String,
    pub attributes: Attachment,
    pub links: ObjectLink,
}

Fields

_type: String

Immutable value

id: Stringattributes: Attachmentlinks: ObjectLink

Methods

impl AttachmentRead[src]

pub fn new(
    _type: String,
    id: String,
    attributes: Attachment,
    links: ObjectLink
) -> AttachmentRead
[src]

Trait Implementations

impl Debug for AttachmentRead[src]

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

impl PartialEq<AttachmentRead> for AttachmentRead[src]

impl Serialize for AttachmentRead[src]

impl StructuralPartialEq for AttachmentRead[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.