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 UnsafeUnpin for BaseKey
impl UnwindSafe for BaseKey
Blanket Implementations§
impl<_INNER> AutoTraits for _INNER
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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
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 moreimpl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSync for Twhere
T: Sync,
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.