Struct webb_proposals::evm::TokenRemoveProposal
source · pub struct TokenRemoveProposal { /* private fields */ }Expand description
Token Remove Proposal.
Suppose a token has been allowed to be wrapped into the WEBB token by the
token add proposal. The TokenRemoveProposal can disallow this added
token from being wrapped into the WEBB token.
The format of the proposal looks like:
┌────────────────────┬──────────────────┐
│ │ │
│ ProposalHeader 40B │ TokenAddress 20B │
│ │ │
└────────────────────┴──────────────────┘
Implementations§
source§impl TokenRemoveProposal
impl TokenRemoveProposal
sourcepub const fn new(header: ProposalHeader, token_address: [u8; 20]) -> Self
pub const fn new(header: ProposalHeader, token_address: [u8; 20]) -> Self
Creates a new proposal.
sourcepub const fn header(&self) -> ProposalHeader
pub const fn header(&self) -> ProposalHeader
Returns the header of the proposal.
sourcepub const fn token_address(&self) -> &[u8; 20]
pub const fn token_address(&self) -> &[u8; 20]
Returns a reference to that field of the proposal.
Trait Implementations§
source§impl Clone for TokenRemoveProposal
impl Clone for TokenRemoveProposal
source§fn clone(&self) -> TokenRemoveProposal
fn clone(&self) -> TokenRemoveProposal
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TokenRemoveProposal
impl Debug for TokenRemoveProposal
source§impl<'de> Deserialize<'de> for TokenRemoveProposal
impl<'de> Deserialize<'de> for TokenRemoveProposal
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for TokenRemoveProposal
impl Hash for TokenRemoveProposal
source§impl PartialEq for TokenRemoveProposal
impl PartialEq for TokenRemoveProposal
source§fn eq(&self, other: &TokenRemoveProposal) -> bool
fn eq(&self, other: &TokenRemoveProposal) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl ProposalTrait for TokenRemoveProposal
impl ProposalTrait for TokenRemoveProposal
source§fn header(&self) -> ProposalHeader
fn header(&self) -> ProposalHeader
Get the proposal header.
source§fn function_sig() -> FunctionSignature
fn function_sig() -> FunctionSignature
Get the function signature.
source§impl Serialize for TokenRemoveProposal
impl Serialize for TokenRemoveProposal
impl Copy for TokenRemoveProposal
impl Eq for TokenRemoveProposal
impl StructuralEq for TokenRemoveProposal
impl StructuralPartialEq for TokenRemoveProposal
Auto Trait Implementations§
impl RefUnwindSafe for TokenRemoveProposal
impl Send for TokenRemoveProposal
impl Sync for TokenRemoveProposal
impl Unpin for TokenRemoveProposal
impl UnwindSafe for TokenRemoveProposal
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T.