pub struct StoreRecord {
pub record: Record,
}
Expand description
Fields§
§record: Record
The Record
to store.
Trait Implementations§
Source§impl Clone for StoreRecord
impl Clone for StoreRecord
Source§fn clone(&self) -> StoreRecord
fn clone(&self) -> StoreRecord
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 Debug for StoreRecord
impl Debug for StoreRecord
Source§impl<'de> Deserialize<'de> for StoreRecord
impl<'de> Deserialize<'de> for StoreRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StoreRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StoreRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StoreRecord
impl PartialEq for StoreRecord
Source§impl Serialize for StoreRecord
impl Serialize for StoreRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&StoreRecord> for SerializedBytes
impl TryFrom<&StoreRecord> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: &StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for StoreRecord
impl TryFrom<SerializedBytes> for StoreRecord
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(sb: SerializedBytes) -> Result<StoreRecord, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<StoreRecord, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<StoreRecord> for SerializedBytes
impl TryFrom<StoreRecord> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: StoreRecord) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
impl StructuralPartialEq for StoreRecord
Auto Trait Implementations§
impl Freeze for StoreRecord
impl RefUnwindSafe for StoreRecord
impl Send for StoreRecord
impl Sync for StoreRecord
impl Unpin for StoreRecord
impl UnwindSafe for StoreRecord
Blanket Implementations§
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