[][src]Struct pallet_product_registry::ProductBuilder

pub struct ProductBuilder<AccountId, Moment> where
    AccountId: Default,
    Moment: Default
{ /* fields omitted */ }

Implementations

impl<AccountId, Moment> ProductBuilder<AccountId, Moment> where
    AccountId: Default,
    Moment: Default
[src]

pub fn identified_by(self, id: ProductId) -> Self[src]

pub fn owned_by(self, owner: AccountId) -> Self[src]

pub fn with_props(self, props: Option<Vec<ProductProperty>>) -> Self[src]

pub fn registered_on(self, registered: Moment) -> Self[src]

pub fn build(self) -> Product<AccountId, Moment>[src]

Trait Implementations

impl<AccountId: Default, Moment: Default> Default for ProductBuilder<AccountId, Moment> where
    AccountId: Default,
    Moment: Default
[src]

Auto Trait Implementations

impl<AccountId, Moment> RefUnwindSafe for ProductBuilder<AccountId, Moment> where
    AccountId: RefUnwindSafe,
    Moment: RefUnwindSafe

impl<AccountId, Moment> Send for ProductBuilder<AccountId, Moment> where
    AccountId: Send,
    Moment: Send

impl<AccountId, Moment> Sync for ProductBuilder<AccountId, Moment> where
    AccountId: Sync,
    Moment: Sync

impl<AccountId, Moment> Unpin for ProductBuilder<AccountId, Moment> where
    AccountId: Unpin,
    Moment: Unpin

impl<AccountId, Moment> UnwindSafe for ProductBuilder<AccountId, Moment> where
    AccountId: UnwindSafe,
    Moment: 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> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

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.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,