referrerpolicy=no-referrer-when-downgrade

Trait TryFromOtherBounds

Source
pub trait TryFromOtherBounds<AccountId, BOtherOuter: Get<u32>, BOtherInner: Get<u32>> {
    // Required method
    fn try_from_other_bounds(
        other: BoundedSupports<AccountId, BOtherOuter, BOtherInner>,
    ) -> Result<Self, Error>
       where Self: Sized;
}
Expand description

Try and build yourself from another BoundedSupports with a different set of types.

Required Methods§

Source

fn try_from_other_bounds( other: BoundedSupports<AccountId, BOtherOuter, BOtherInner>, ) -> Result<Self, Error>
where Self: Sized,

Implementors§

Source§

impl<AccountId, BOuter: Get<u32>, BInner: Get<u32>, BOtherOuter: Get<u32>, BOuterInner: Get<u32>> TryFromOtherBounds<AccountId, BOtherOuter, BOuterInner> for BoundedSupports<AccountId, BOuter, BInner>