[][src]Struct safe_core::core_structs::MDataEntry

pub struct MDataEntry {
    pub key: MDataKey,
    pub value: MDataValue,
}

Mutable data entry.

Fields

key: MDataKey

Key.

value: MDataValue

Value.

Implementations

impl MDataEntry[src]

pub fn into_repr_c(self) -> MDataEntry[src]

Construct FFI wrapper for the native Rust object, consuming self.

Trait Implementations

impl Clone for MDataEntry[src]

impl Debug for MDataEntry[src]

impl<'de> Deserialize<'de> for MDataEntry[src]

impl Eq for MDataEntry[src]

impl Hash for MDataEntry[src]

impl Ord for MDataEntry[src]

impl PartialEq<MDataEntry> for MDataEntry[src]

impl PartialOrd<MDataEntry> for MDataEntry[src]

impl ReprC for MDataEntry[src]

type C = *const MDataEntry

C representation of the type.

type Error = ()

Error type.

impl Serialize for MDataEntry[src]

impl StructuralEq for MDataEntry[src]

impl StructuralPartialEq for MDataEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,