pub struct PerRegistryKeyspace<T> {
pub address: T,
pub asset_id: T,
pub contract_id: T,
pub script_code: T,
pub predicate_code: T,
}Expand description
A value for each keyspace
Fields§
§address: T§asset_id: T§contract_id: T§script_code: T§predicate_code: TTrait Implementations§
Source§impl<T: Clone> Clone for PerRegistryKeyspace<T>
impl<T: Clone> Clone for PerRegistryKeyspace<T>
Source§fn clone(&self) -> PerRegistryKeyspace<T>
fn clone(&self) -> PerRegistryKeyspace<T>
Returns a duplicate 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<T: Debug> Debug for PerRegistryKeyspace<T>
impl<T: Debug> Debug for PerRegistryKeyspace<T>
Source§impl<T: Default> Default for PerRegistryKeyspace<T>
impl<T: Default> Default for PerRegistryKeyspace<T>
Source§fn default() -> PerRegistryKeyspace<T>
fn default() -> PerRegistryKeyspace<T>
Returns the “default value” for a type. Read more
Source§impl<T> Index<RegistryKeyspace> for PerRegistryKeyspace<T>
impl<T> Index<RegistryKeyspace> for PerRegistryKeyspace<T>
Source§impl<T> IndexMut<RegistryKeyspace> for PerRegistryKeyspace<T>
impl<T> IndexMut<RegistryKeyspace> for PerRegistryKeyspace<T>
Source§impl<T: PartialEq> PartialEq for PerRegistryKeyspace<T>
impl<T: PartialEq> PartialEq for PerRegistryKeyspace<T>
impl<T: Eq> Eq for PerRegistryKeyspace<T>
impl<T> StructuralPartialEq for PerRegistryKeyspace<T>
Auto Trait Implementations§
impl<T> Freeze for PerRegistryKeyspace<T>where
T: Freeze,
impl<T> RefUnwindSafe for PerRegistryKeyspace<T>where
T: RefUnwindSafe,
impl<T> Send for PerRegistryKeyspace<T>where
T: Send,
impl<T> Sync for PerRegistryKeyspace<T>where
T: Sync,
impl<T> Unpin for PerRegistryKeyspace<T>where
T: Unpin,
impl<T> UnsafeUnpin for PerRegistryKeyspace<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for PerRegistryKeyspace<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> AnyDebug for T
impl<T> AnyDebug for T
Source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, Ctx, Decompressed> Decompress<Decompressed, Ctx> for Twhere
Ctx: ContextError,
Decompressed: DecompressibleBy<Ctx, Compressed = T>,
impl<T, Ctx, Decompressed> Decompress<Decompressed, Ctx> for Twhere
Ctx: ContextError,
Decompressed: DecompressibleBy<Ctx, Compressed = T>,
Source§async fn decompress(
self,
ctx: &Ctx,
) -> Result<Decompressed, <Ctx as ContextError>::Error>
async fn decompress( self, ctx: &Ctx, ) -> Result<Decompressed, <Ctx as ContextError>::Error>
Perform decompression, returning the original data.
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more