Struct odra_modules::erc721::events::Approval

source ·
pub struct Approval {
    pub owner: Address,
    pub approved: Option<Address>,
    pub token_id: U256,
}
Expand description

Emitted when the owner approves approved to operate on the token_id token.

Fields§

§owner: Address

The owner of the tokens.

§approved: Option<Address>

The operator that is approved.

§token_id: U256

The token id.

Implementations§

source§

impl Approval

source

pub fn new(owner: Address, approved: Option<Address>, token_id: U256) -> Self

Creates a new instance of the Approval event.

Trait Implementations§

source§

impl CLTyped for Approval

source§

fn cl_type() -> CLType

The CLType of Self.
source§

impl Debug for Approval

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl EventInstance for Approval

source§

fn name() -> String

Returns the name of the event.
source§

fn schema() -> Schema

Returns the Schema of the event.
source§

impl FromBytes for Approval

source§

fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>

Deserializes the slice into Self.
source§

fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>

Deserializes the Vec<u8> into Self.
source§

impl NamedCLTyped for Approval

source§

fn ty() -> NamedCLType

Returns the NamedCLType of the implementing type.
source§

impl PartialEq for Approval

source§

fn eq(&self, other: &Approval) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl SchemaCustomTypes for Approval

source§

fn schema_types() -> Vec<Option<CustomType>>

Returns a vector of optional CustomTypes.
source§

impl ToBytes for Approval

source§

fn to_bytes(&self) -> Result<Vec<u8>, Error>

Serializes &self to a Vec<u8>.
source§

fn serialized_length(&self) -> usize

Returns the length of the Vec<u8> which would be returned from a successful call to to_bytes() or into_bytes(). The data is not actually serialized, so this call is relatively cheap.
source§

fn into_bytes(self) -> Result<Vec<u8>, Error>
where Self: Sized,

Consumes self and serializes to a Vec<u8>.
source§

fn write_bytes(&self, writer: &mut Vec<u8>) -> Result<(), Error>

Writes &self into a mutable writer.
source§

impl Eq for Approval

source§

impl StructuralPartialEq for Approval

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> EntrypointArgument for T
where T: CLTyped + ToBytes,

source§

fn is_required() -> bool

Returns true if the argument is required.
source§

fn cl_type() -> CLType

Returns the CLType of the argument.
source§

fn insert_runtime_arg(self, name: &str, args: &mut RuntimeArgs)

Inserts the argument into the runtime args.
source§

fn unwrap(value: Option<T>, env: &ContractEnv) -> T

Unwraps the argument from an Option.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEvent for T
where T: EventInstance,

source§

fn into_event() -> Event

Converts the type into an Event.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.