fuel_core_storage

Trait StorageWrite

source
pub trait StorageWrite<Type>: StorageMutate<Type>
where Type: Mappable,
{ // Required methods fn write_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<usize, Self::Error>; fn replace_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<(usize, Option<Vec<u8>>), Self::Error>; fn take_bytes( &mut self, key: &<Type as Mappable>::Key, ) -> Result<Option<Vec<u8>>, Self::Error>; }
Expand description

Base storage trait for Fuel infrastructure.

Allows writing the raw bytes of the value stored to a given key from a provided buffer.

This trait should skip any serialization and simply copy the raw bytes to the storage.

Required Methods§

source

fn write_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<usize, Self::Error>

Write the bytes to the given key from the provided buffer.

Does not perform any serialization.

Returns the number of bytes written.

source

fn replace_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<(usize, Option<Vec<u8>>), Self::Error>

Write the bytes to the given key from the provided buffer and return the previous bytes if it existed.

Does not perform any serialization.

Returns the number of bytes written and the previous value if it existed.

source

fn take_bytes( &mut self, key: &<Type as Mappable>::Key, ) -> Result<Option<Vec<u8>>, Self::Error>

Removes a bytes from the storage and returning it without deserializing it.

Implementations on Foreign Types§

source§

impl<'a, T, Type> StorageWrite<Type> for &'a mut T
where T: StorageWrite<Type> + ?Sized, Type: Mappable,

source§

fn write_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<usize, <&'a mut T as StorageInspect<Type>>::Error>

source§

fn replace_bytes( &mut self, key: &<Type as Mappable>::Key, buf: &[u8], ) -> Result<(usize, Option<Vec<u8>>), <&'a mut T as StorageInspect<Type>>::Error>

source§

fn take_bytes( &mut self, key: &<Type as Mappable>::Key, ) -> Result<Option<Vec<u8>>, <&'a mut T as StorageInspect<Type>>::Error>

source§

impl<D> StorageWrite<BlobData> for PredicateStorage<D>

source§

fn write_bytes( &mut self, _key: &<BlobData as Mappable>::Key, _buf: &[u8], ) -> Result<usize, <PredicateStorage<D> as StorageInspect<BlobData>>::Error>

source§

fn replace_bytes( &mut self, _key: &<BlobData as Mappable>::Key, _buf: &[u8], ) -> Result<(usize, Option<Vec<u8>>), <PredicateStorage<D> as StorageInspect<BlobData>>::Error>

source§

fn take_bytes( &mut self, _key: &<BlobData as Mappable>::Key, ) -> Result<Option<Vec<u8>>, <PredicateStorage<D> as StorageInspect<BlobData>>::Error>

source§

impl<D> StorageWrite<ContractsRawCode> for PredicateStorage<D>

source§

impl<D> StorageWrite<ContractsState> for PredicateStorage<D>

Implementors§

source§

impl<Column, S, M> StorageWrite<M> for StructuredStorage<S>
where S: KeyValueMutate<Column = Column>, M: TableWithBlueprint<Column = Column, Value = [u8]>, M::Blueprint: BlueprintMutate<M, StructuredStorage<S>, ValueCodec = Raw>, M::OwnedValue: Into<Vec<u8>>,

source§

impl<D, M: Mappable> StorageWrite<M> for VmStorage<D>
where D: StorageWrite<M, Error = Error>,