Struct dock_core::util::with_nonce::WithNonce
source · pub struct WithNonce<T: Types, D> {
pub nonce: T::BlockNumber,
/* private fields */
}
Expand description
Wrapper for any kind of entity with a nonce. Nonces are mostly used for replay protection. Initial nonce will be equal to the current block number provided by the system.
Fields§
§nonce: T::BlockNumber
Implementations§
source§impl<T: Types, D> WithNonce<T, D>
impl<T: Types, D> WithNonce<T, D>
sourcepub fn new(data: D) -> Selfwhere
T: Config<BlockNumber = <T as Types>::BlockNumber>,
pub fn new(data: D) -> Selfwhere T: Config<BlockNumber = <T as Types>::BlockNumber>,
Adds a nonce to the given data
.
Nonce will be equal to the current block number provided by the system.
sourcepub fn new_with_nonce(data: D, nonce: T::BlockNumber) -> Self
pub fn new_with_nonce(data: D, nonce: T::BlockNumber) -> Self
Adds supplied nonce to the given data
.
sourcepub fn into_data(self) -> D
pub fn into_data(self) -> D
Takes underlying data. If you would like to update an entity, use try_update
instead.
sourcepub fn next_nonce(&self) -> Option<T::BlockNumber>
pub fn next_nonce(&self) -> Option<T::BlockNumber>
Returns next nonce for the given entity.
sourcepub fn is_next_nonce(&self, nonce: T::BlockNumber) -> bool
pub fn is_next_nonce(&self, nonce: T::BlockNumber) -> bool
Returns true
if given nonce is the next nonce for the given entity, i.e. is equal to current nonce plus 1.
sourcepub fn try_update(&mut self, nonce: T::BlockNumber) -> Result<&mut D, NonceError>
pub fn try_update(&mut self, nonce: T::BlockNumber) -> Result<&mut D, NonceError>
Returns mutable reference to the underlying data if provided nonce is equal to current nonce plus 1, otherwise returns an error.
sourcepub fn try_update_opt_with<F, E, R>(
this_opt: &mut Option<Self>,
nonce: T::BlockNumber,
f: F
) -> Option<Result<R, E>>where
F: FnOnce(&mut Option<D>) -> Result<R, E>,
E: From<NonceError>,
pub fn try_update_opt_with<F, E, R>( this_opt: &mut Option<Self>, nonce: T::BlockNumber, f: F ) -> Option<Result<R, E>>where F: FnOnce(&mut Option<D>) -> Result<R, E>, E: From<NonceError>,
If supplied value is Some(_)
, attempts to increase current nonce - succeeds if provided nonce is equal to
current nonce plus 1, otherwise returns an error. If value is None
, None
will be returned.
Trait Implementations§
source§impl<T: Types, D> Decode for WithNonce<T, D>where
T::BlockNumber: Decode,
D: Decode,
impl<T: Types, D> Decode for WithNonce<T, D>where T::BlockNumber: Decode, D: Decode,
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<Self, Error>
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>( input: &mut I, dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>where I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
source§impl<'de, T, D> Deserialize<'de> for WithNonce<T, D>where
T: Sized + Types,
D: Deserialize<'de>,
impl<'de, T, D> Deserialize<'de> for WithNonce<T, D>where T: Sized + Types, D: Deserialize<'de>,
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>,
source§impl<T: Types, D> Encode for WithNonce<T, D>where
D: Encode,
impl<T: Types, D> Encode for WithNonce<T, D>where D: Encode,
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )
§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config> From<StoredDidDetails<T>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>
impl<T: Config> From<StoredDidDetails<T>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>
source§fn from(details: StoredDidDetails<T>) -> Self
fn from(details: StoredDidDetails<T>) -> Self
source§impl<T: TypesAndLimits> From<WithNonce<T, OnChainDidDetails>> for StoredDidDetails<T>
impl<T: TypesAndLimits> From<WithNonce<T, OnChainDidDetails>> for StoredDidDetails<T>
source§fn from(details: StoredOnChainDidDetails<T>) -> Self
fn from(details: StoredOnChainDidDetails<T>) -> Self
source§impl<T: Types, D: MaxEncodedLen> MaxEncodedLen for WithNonce<T, D>
impl<T: Types, D: MaxEncodedLen> MaxEncodedLen for WithNonce<T, D>
source§fn max_encoded_len() -> usize
fn max_encoded_len() -> usize
source§impl<T: PartialEq + Types, D: PartialEq> PartialEq<WithNonce<T, D>> for WithNonce<T, D>where
T::BlockNumber: PartialEq,
impl<T: PartialEq + Types, D: PartialEq> PartialEq<WithNonce<T, D>> for WithNonce<T, D>where T::BlockNumber: PartialEq,
source§impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for StoredDidDetails<T>
impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for StoredDidDetails<T>
source§impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for StoredOnChainDidDetails<T>
impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for StoredOnChainDidDetails<T>
source§impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for WithNonce<T, ()>
impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for WithNonce<T, ()>
source§impl<T: Config> TryFrom<WithNonce<T, OnChainDidDetails>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>
impl<T: Config> TryFrom<WithNonce<T, OnChainDidDetails>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>
source§impl<T, D> TypeInfo for WithNonce<T, D>where
T::BlockNumber: TypeInfo + 'static,
D: TypeInfo + 'static,
T: Types + 'static,
impl<T, D> TypeInfo for WithNonce<T, D>where T::BlockNumber: TypeInfo + 'static, D: TypeInfo + 'static, T: Types + 'static,
impl<T: Types, D> EncodeLike<WithNonce<T, D>> for WithNonce<T, D>where D: Encode,
impl<T: Eq + Types, D: Eq> Eq for WithNonce<T, D>where T::BlockNumber: Eq,
impl<T: Types, D> StructuralEq for WithNonce<T, D>
impl<T: Types, D> StructuralPartialEq for WithNonce<T, D>
Auto Trait Implementations§
impl<T, D> RefUnwindSafe for WithNonce<T, D>where D: RefUnwindSafe, <T as Types>::BlockNumber: RefUnwindSafe,
impl<T, D> Send for WithNonce<T, D>where D: Send,
impl<T, D> Sync for WithNonce<T, D>where D: Sync,
impl<T, D> Unpin for WithNonce<T, D>where D: Unpin, <T as Types>::BlockNumber: Unpin,
impl<T, D> UnwindSafe for WithNonce<T, D>where D: UnwindSafe, <T as Types>::BlockNumber: UnwindSafe,
Blanket Implementations§
source§impl<T> CanUpdate<()> for T
impl<T> CanUpdate<()> for T
source§fn can_remove(&self, _entity: &()) -> bool
fn can_remove(&self, _entity: &()) -> bool
§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> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere T: Decode,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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 + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
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)
&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)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere T: Codec,
§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> IsType<T> for T
impl<T> IsType<T> for T
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere T: Codec,
§impl<T> Pointable for T
impl<T> Pointable 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>,
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
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.