HasManyModel

Enum HasManyModel 

pub enum HasManyModel<E: EntityTrait> {
    NotSet,
    Replace(Vec<E::ActiveModelEx>),
    Append(Vec<E::ActiveModelEx>),
}
Expand description

Container for 1-N or M-N related Models

Variants§

§

NotSet

Unspecified value, do nothing

§

Replace(Vec<E::ActiveModelEx>)

Replace all items with this value set; delete leftovers

§

Append(Vec<E::ActiveModelEx>)

Add new items to this has many relation; do not delete

Implementations§

§

impl<E> HasManyModel<E>
where E: EntityTrait,

pub fn take(&mut self) -> Self

Take ownership of the models, leaving NotSet in place

pub fn as_slice(&self) -> &[E::ActiveModelEx]

Borrow models as slice

pub fn as_mut_vec(&mut self) -> &mut Vec<E::ActiveModelEx>

Get a mutable vec. If self is NotSet, convert to append.

pub fn into_vec(self) -> Vec<E::ActiveModelEx>

Consume self as vector

pub fn empty_holder(&self) -> Self

Returns an empty container of self

pub fn push<AM: Into<E::ActiveModelEx>>(&mut self, model: AM) -> &mut Self

Push an item to self

pub fn append<AM: Into<E::ActiveModelEx>>(&mut self, model: AM) -> &mut Self

Push an item to self, but convert Replace to Append

pub fn replace_all<I>(&mut self, models: I) -> &mut Self
where I: IntoIterator<Item = E::ActiveModelEx>,

Replace all items in this set

pub fn convert_to_append(&mut self) -> &mut Self

Convert self to Append, if set

pub fn not_set(&mut self)

Reset self to NotSet

pub fn is_replace(&self) -> bool

If self is Replace

pub fn is_append(&self) -> bool

If self is Append

pub fn is_changed(&self) -> bool

Return true if self is Replace or any containing model is changed

pub fn find(&self, model: &E::Model) -> bool

Find within the models by primary key, return true if found

pub fn try_into_model(self) -> Result<HasMany<E>, DbErr>

Convert this back to a ModelEx container

Trait Implementations§

§

impl<E: Clone + EntityTrait> Clone for HasManyModel<E>
where E::ActiveModelEx: Clone,

§

fn clone(&self) -> HasManyModel<E>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<E: Debug + EntityTrait> Debug for HasManyModel<E>
where E::ActiveModelEx: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl<E: EntityTrait> Default for HasManyModel<E>

§

fn default() -> HasManyModel<E>

Returns the “default value” for a type. Read more
§

impl<E: EntityTrait> From<HasManyModel<E>> for Option<Vec<E::ActiveModelEx>>

§

fn from(value: HasManyModel<E>) -> Self

Converts to this type from the input type.
§

impl<E: EntityTrait> From<Vec<<E as EntityTrait>::ActiveModelEx>> for HasManyModel<E>

Converts from a set of models into Append, which performs non-destructive action

§

fn from(value: Vec<E::ActiveModelEx>) -> Self

Converts to this type from the input type.
§

impl<E: EntityTrait> Index<usize> for HasManyModel<E>

§

type Output = <E as EntityTrait>::ActiveModelEx

The returned type after indexing.
§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
§

impl<E: EntityTrait> IndexMut<usize> for HasManyModel<E>

§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
§

impl<E: EntityTrait> IntoIterator for HasManyModel<E>

§

type Item = <E as EntityTrait>::ActiveModelEx

The type of the elements being iterated over.
§

type IntoIter = IntoIter<<E as EntityTrait>::ActiveModelEx>

Which kind of iterator are we turning this into?
§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
§

impl<E> PartialEq for HasManyModel<E>

§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<E> Eq for HasManyModel<E>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more