Struct v9::column::EditColumn[][src]

pub struct EditColumn<'a, M: TableMarker, T> where
    T: Clone
{ /* fields omitted */ }

You can change the values in this column, but not the length. Changes may be logged. Because of this, you must access items in increasing order.

Implementations

impl<'a, M: TableMarker, T> EditColumn<'a, M, T> where
    T: Clone
[src]

pub fn borrow(&self) -> ReadColumn<'_, M, T>[src]

Trait Implementations

impl<'a, M: TableMarker, T: Clone> ColumnInfo<M> for EditColumn<'a, M, T>[src]

impl<'a, M, T> Extract for EditColumn<'a, M, T> where
    M: TableMarker,
    T: 'static + Send + Sync,
    T: Clone
[src]

type Owned = EditColumnOwned<'a, M, T>

type Cleanup = EditColumnCleanup<M, T>

Default is (), which does nothing.

impl<'a, 'b, I, M: TableMarker, T> Index<I> for EditColumn<'a, M, T> where
    T: Clone,
    I: 'b + Check<M = M>, 
[src]

type Output = T

The returned type after indexing.

impl<'a, 'b, I, M: TableMarker, T> IndexMut<I> for EditColumn<'a, M, T> where
    T: Clone,
    I: 'b + Check<M = M>, 
[src]

Auto Trait Implementations

impl<'a, M, T> RefUnwindSafe for EditColumn<'a, M, T> where
    M: RefUnwindSafe,
    T: RefUnwindSafe,
    <M as TableMarker>::RawId: RefUnwindSafe

impl<'a, M, T> Send for EditColumn<'a, M, T> where
    T: Send

impl<'a, M, T> Sync for EditColumn<'a, M, T> where
    T: Sync

impl<'a, M, T> Unpin for EditColumn<'a, M, T>

impl<'a, M, T> !UnwindSafe for EditColumn<'a, M, T>

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<X> ForeignKey for X[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.