Struct bailamos::db::notifications::Notification[][src]

pub struct Notification { /* fields omitted */ }

Implementations

impl Notification[src]

pub const fn new(
    id: Option<Id>,
    date_created: Option<u64>,
    user_id: Option<Id>,
    title: Option<String>,
    content: Option<String>,
    data: Option<Vec<u8>>,
    read: bool
) -> Self
[src]

pub fn id(&self) -> Option<Id>[src]

pub fn date_created(&self) -> Option<u64>[src]

pub fn user_id(&self) -> Option<Id>[src]

pub fn title(&self) -> Option<&str>[src]

Title

pub fn content(&self) -> Option<&str>[src]

pub fn data(&self) -> Option<&[u8]>[src]

pub fn is_read(&self) -> bool[src]

Trait Implementations

impl Debug for Notification[src]

impl TryFrom<Value> for Notification[src]

type Error = Error

The type returned in the event of a conversion error.

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> 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.