[][src]Struct firefly_iii::models::tag_read::TagRead

pub struct TagRead {
    pub _type: String,
    pub id: String,
    pub attributes: TagModel,
    pub links: ObjectLink,
}

Fields

_type: String

Immutable value

id: Stringattributes: TagModellinks: ObjectLink

Methods

impl TagRead[src]

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

Trait Implementations

impl Debug for TagRead[src]

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

impl PartialEq<TagRead> for TagRead[src]

impl Serialize for TagRead[src]

impl StructuralPartialEq for TagRead[src]

Auto Trait Implementations

impl RefUnwindSafe for TagRead

impl Send for TagRead

impl Sync for TagRead

impl Unpin for TagRead

impl UnwindSafe for TagRead

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.