Struct ciboulette::CibouletteRelationshipObjectBuilder[][src]

pub struct CibouletteRelationshipObjectBuilder<'request> {
    pub links: Option<CibouletteLink<'request>>,
    pub data: CibouletteOptionalData<CibouletteResourceIdentifierSelectorBuilder<'request>>,
    pub meta: Option<Value>,
}

Fields

links: Option<CibouletteLink<'request>>data: CibouletteOptionalData<CibouletteResourceIdentifierSelectorBuilder<'request>>meta: Option<Value>

Implementations

impl<'request> CibouletteRelationshipObjectBuilder<'request>[src]

pub fn data(
    &self
) -> &CibouletteOptionalData<CibouletteResourceIdentifierSelectorBuilder<'request>>
[src]

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

impl<'request> CibouletteRelationshipObjectBuilder<'request>[src]

pub fn data_mut(
    &mut self
) -> &mut CibouletteOptionalData<CibouletteResourceIdentifierSelectorBuilder<'request>>
[src]

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

impl<'request> CibouletteRelationshipObjectBuilder<'request>[src]

pub fn build(
    self,
    type_: &Arc<CibouletteResourceType>
) -> Result<CibouletteRelationshipObject<'request>, CibouletteError>
[src]

Trait Implementations

impl<'request> Clone for CibouletteRelationshipObjectBuilder<'request>[src]

impl<'request> Debug for CibouletteRelationshipObjectBuilder<'request>[src]

impl<'request> Default for CibouletteRelationshipObjectBuilder<'request>[src]

impl<'de, 'request> Deserialize<'de> for CibouletteRelationshipObjectBuilder<'request> where
    CibouletteRelationshipObjectBuilder<'request>: Default
[src]

impl<'request> Serialize for CibouletteRelationshipObjectBuilder<'request>[src]

Auto Trait Implementations

impl<'request> RefUnwindSafe for CibouletteRelationshipObjectBuilder<'request>

impl<'request> Send for CibouletteRelationshipObjectBuilder<'request>

impl<'request> Sync for CibouletteRelationshipObjectBuilder<'request>

impl<'request> Unpin for CibouletteRelationshipObjectBuilder<'request>

impl<'request> UnwindSafe for CibouletteRelationshipObjectBuilder<'request>

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