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.