pub struct BaseRRC721 { /* private fields */ }Implementations§
Trait Implementations§
Source§impl RRC721 for BaseRRC721
impl RRC721 for BaseRRC721
fn name(&self) -> &str
fn symbol(&self) -> &str
fn balance_of(&self, owner: Address) -> u64
fn owner_of(&self, token_id: u64) -> Address
fn safe_transfer_from( &mut self, from: Address, to: Address, token_id: u64, ) -> Result<(), Error>
fn approve(&mut self, to: Address, token_id: u64) -> Result<(), Error>
fn get_approved(&self, token_id: u64) -> Address
fn token_uri(&self, token_id: u64) -> String
Auto Trait Implementations§
impl Freeze for BaseRRC721
impl RefUnwindSafe for BaseRRC721
impl Send for BaseRRC721
impl Sync for BaseRRC721
impl Unpin for BaseRRC721
impl UnsafeUnpin for BaseRRC721
impl UnwindSafe for BaseRRC721
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more