[][src]Struct rql::OwnedRow

pub struct OwnedRow<T> {
    pub id: Id<T>,
    pub data: T,
}

An row of owned data cloned from a Table

Fields

id: Id<T>

The OwnedRow's id

data: T

The OwnedRow's data

Trait Implementations

impl<T> AsRef<T> for OwnedRow<T>[src]

impl<T, U> PartialEq<OwnedRow<U>> for OwnedRow<T> where
    T: PartialEq<U>, 
[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<'a, T, U> PartialEq<Row<'a, U>> for OwnedRow<T> where
    T: PartialEq<U>, 
[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<'a, T, U> PartialEq<RowMut<'a, U>> for OwnedRow<T> where
    T: PartialEq<U>, 
[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<T> AsMut<T> for OwnedRow<T>[src]

impl<T> Eq for OwnedRow<T> where
    T: Eq
[src]

impl<T> DerefMut for OwnedRow<T>[src]

impl<T> Display for OwnedRow<T> where
    T: Display
[src]

impl<T> Debug for OwnedRow<T> where
    T: Debug
[src]

impl<T> Deref for OwnedRow<T>[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<T> Sync for OwnedRow<T> where
    T: Sync

impl<T> Send for OwnedRow<T> where
    T: Send

impl<T> Unpin for OwnedRow<T> where
    T: Unpin

impl<T> RefUnwindSafe for OwnedRow<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for OwnedRow<T> where
    T: UnwindSafe

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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