[][src]Struct rql::RowMut

pub struct RowMut<'a, T> {
    pub id: Id<T>,
    pub data: &'a mut T,
}

A mutable row in a Table

Fields

id: Id<T>

The RowMut's id

data: &'a mut T

The RowMut's data

Trait Implementations

impl<'a, T> Idd for RowMut<'a, T>[src]

type RowType = T

The type of the row

impl<'a, T> AsRef<T> for RowMut<'a, T>[src]

impl<'a, T, U> PartialEq<RowMut<'a, U>> for Row<'a, 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 RowMut<'a, 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 RowMut<'a, T> where
    T: PartialEq<U>, 
[src]

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

This method tests for !=.

impl<'a, T> AsMut<T> for RowMut<'a, T>[src]

impl<'a, T> Eq for RowMut<'a, T> where
    T: Eq
[src]

impl<'a, T> DerefMut for RowMut<'a, T>[src]

impl<'a, T> Display for RowMut<'a, T> where
    T: Display
[src]

impl<'a, T> Debug for RowMut<'a, T> where
    T: Debug
[src]

impl<'a, T> Deref for RowMut<'a, T>[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, T> Sync for RowMut<'a, T> where
    T: Sync

impl<'a, T> Send for RowMut<'a, T> where
    T: Send

impl<'a, T> Unpin for RowMut<'a, T> where
    T: Unpin

impl<'a, T> RefUnwindSafe for RowMut<'a, T> where
    T: RefUnwindSafe

impl<'a, T> !UnwindSafe for RowMut<'a, T>

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]