pub struct BaseKey {
pub bytes: Vec<u8>,
}
Expand description
A wrapper over Vec<u8>
with functions for using it as a key prefix.
Fields§
§bytes: Vec<u8>
The byte value of the key prefix.
Implementations§
Source§impl BaseKey
impl BaseKey
Sourcepub fn base_tag_index(&self, tag: u8, index: &[u8]) -> Vec<u8> ⓘ
pub fn base_tag_index(&self, tag: u8, index: &[u8]) -> Vec<u8> ⓘ
Concatenates the base key, tag and index.
Sourcepub fn derive_key<I: Serialize>(&self, index: &I) -> Result<Vec<u8>, Error>
pub fn derive_key<I: Serialize>(&self, index: &I) -> Result<Vec<u8>, Error>
Obtains the Vec<u8>
key from the key by serialization and using the base key.
Sourcepub fn derive_tag_key<I: Serialize>(
&self,
tag: u8,
index: &I,
) -> Result<Vec<u8>, Error>
pub fn derive_tag_key<I: Serialize>( &self, tag: u8, index: &I, ) -> Result<Vec<u8>, Error>
Obtains the Vec<u8>
key from the key by serialization and using the base_key
.
Sourcepub fn derive_short_key<I: Serialize + ?Sized>(
index: &I,
) -> Result<Vec<u8>, Error>
pub fn derive_short_key<I: Serialize + ?Sized>( index: &I, ) -> Result<Vec<u8>, Error>
Obtains the short Vec<u8>
key from the key by serialization.
Sourcepub fn deserialize_value<Item: DeserializeOwned>(
bytes: &[u8],
) -> Result<Item, Error>
pub fn deserialize_value<Item: DeserializeOwned>( bytes: &[u8], ) -> Result<Item, Error>
Deserialize bytes
into type Item
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BaseKey
impl RefUnwindSafe for BaseKey
impl Send for BaseKey
impl Sync for BaseKey
impl Unpin for BaseKey
impl UnwindSafe for BaseKey
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
Source§impl<T> MockResults for T
impl<T> MockResults for T
Source§type Results = T
type Results = T
The mock native type of the results for the
MockInstance
.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
Source§fn read<'instance>(
&self,
instance: &'instance &mut I,
location: GuestPointer,
length: u32,
) -> Result<Cow<'instance, [u8]>, RuntimeError>
fn read<'instance>( &self, instance: &'instance &mut I, location: GuestPointer, length: u32, ) -> Result<Cow<'instance, [u8]>, RuntimeError>
Reads length
bytes from memory from the provided location
.
Source§fn write(
&mut self,
instance: &mut &mut I,
location: GuestPointer,
bytes: &[u8],
) -> Result<(), RuntimeError>
fn write( &mut self, instance: &mut &mut I, location: GuestPointer, bytes: &[u8], ) -> Result<(), RuntimeError>
Writes the bytes
to memory at the provided location
.
Source§impl<T> Upcastable for T
impl<T> Upcastable for T
Source§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
Source§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref