Struct ciboulette::CibouletteResource[][src]

pub struct CibouletteResource<'request, B, T> {
    pub identifier: T,
    pub attributes: Option<B>,
    pub relationships: BTreeMap<ArcStr, CibouletteRelationshipObject<'request>>,
    pub links: Option<CibouletteLink<'request>>,
    pub type_: Arc<CibouletteResourceType>,
    pub meta: Option<Value>,
}

Fields

identifier: Tattributes: Option<B>relationships: BTreeMap<ArcStr, CibouletteRelationshipObject<'request>>links: Option<CibouletteLink<'request>>type_: Arc<CibouletteResourceType>meta: Option<Value>

Implementations

impl<'request, B, T> CibouletteResource<'request, B, T>[src]

pub fn identifier(&self) -> &T[src]

pub fn attributes(&self) -> &Option<B>[src]

pub fn relationships(
    &self
) -> &BTreeMap<ArcStr, CibouletteRelationshipObject<'request>>
[src]

pub fn type_(&self) -> &Arc<CibouletteResourceType>[src]

pub fn meta(&self) -> &Option<Value>[src]

impl<'request, B, T> CibouletteResource<'request, B, T>[src]

pub fn identifier_mut(&mut self) -> &mut T[src]

pub fn attributes_mut(&mut self) -> &mut Option<B>[src]

pub fn relationships_mut(
    &mut self
) -> &mut BTreeMap<ArcStr, CibouletteRelationshipObject<'request>>
[src]

pub fn type__mut(&mut self) -> &mut Arc<CibouletteResourceType>[src]

pub fn meta_mut(&mut self) -> &mut Option<Value>[src]

Trait Implementations

impl<'request, B: Clone, T: Clone> Clone for CibouletteResource<'request, B, T>[src]

impl<'request, B: Debug, T: Debug> Debug for CibouletteResource<'request, B, T>[src]

impl<'request, B> From<CibouletteResource<'request, B, CibouletteResourceIdentifier<'request>>> for CibouletteResourceIdentifierSelector<'request>[src]

impl<'request, 'store, B> From<CibouletteResource<'request, B, CibouletteResourceIdentifier<'request>>> for CibouletteResource<'request, B, CibouletteResourceIdentifierPermissive<'request>>[src]

impl<'request, B> From<CibouletteResource<'request, B, CibouletteResourceResponseIdentifier<'request>>> for CibouletteResourceResponseIdentifierSelector<'request>[src]

impl<'request, B, T> Serialize for CibouletteResource<'request, B, T> where
    B: Serialize,
    T: Serialize
[src]

impl<'request, B> TryFrom<CibouletteResource<'request, B, CibouletteResourceIdentifierPermissive<'request>>> for CibouletteResourceIdentifierSelector<'request>[src]

type Error = CibouletteError

The type returned in the event of a conversion error.

impl<'request, 'store, B> TryFrom<CibouletteResource<'request, B, CibouletteResourceIdentifierPermissive<'request>>> for CibouletteResource<'request, B, CibouletteResourceIdentifier<'request>>[src]

type Error = CibouletteError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'request, B, T> RefUnwindSafe for CibouletteResource<'request, B, T> where
    B: RefUnwindSafe,
    T: RefUnwindSafe

impl<'request, B, T> Send for CibouletteResource<'request, B, T> where
    B: Send,
    T: Send

impl<'request, B, T> Sync for CibouletteResource<'request, B, T> where
    B: Sync,
    T: Sync

impl<'request, B, T> Unpin for CibouletteResource<'request, B, T> where
    B: Unpin,
    T: Unpin

impl<'request, B, T> UnwindSafe for CibouletteResource<'request, B, T> where
    B: UnwindSafe,
    T: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.