pub trait CanAddOwner: Sized {
    type OutputBuilder;

    // Required method
    fn set_owner(self, owner_badge: NonFungibleGlobalId) -> Self::OutputBuilder;
}

Required Associated Types§

Required Methods§

source

fn set_owner(self, owner_badge: NonFungibleGlobalId) -> Self::OutputBuilder

Implementors§