HasManyModel

Enum HasManyModel 

Source
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ยง

Sourceยง

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

Source

pub fn take(&mut self) -> Self

Take ownership of the models, leaving NotSet in place

Source

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

Borrow models as slice

Source

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

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

Source

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

Consume self as vector

Source

pub fn empty_holder(&self) -> Self

Returns an empty container of self

Source

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

Push an item to self

Source

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

Push an item to self, but convert Replace to Append

Source

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

Replace all items in this set

Source

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

Convert self to Append, if set

Source

pub fn not_set(&mut self)

Reset self to NotSet

Source

pub fn is_replace(&self) -> bool

If self is Replace

Source

pub fn is_append(&self) -> bool

If self is Append

Source

pub fn is_changed(&self) -> bool

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

Source

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

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

Source

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

Convert this back to a ModelEx container

Trait Implementationsยง

Sourceยง

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

Sourceยง

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

Returns a duplicate of the value. Read more
1.0.0ยง

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

Performs copy-assignment from source. Read more
Sourceยง

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

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

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

Sourceยง

fn default() -> HasManyModel<E>

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

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

Sourceยง

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

Converts to this type from the input type.
Sourceยง

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

Sourceยง

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

Converts to this type from the input type.
Sourceยง

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

Sourceยง

type Output = <E as EntityTrait>::ActiveModelEx

The returned type after indexing.
Sourceยง

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

Performs the indexing (container[index]) operation. Read more
Sourceยง

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

Sourceยง

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

Performs the mutable indexing (container[index]) operation. Read more
Sourceยง

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

Sourceยง

type Item = <E as EntityTrait>::ActiveModelEx

The type of the elements being iterated over.
Sourceยง

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

Which kind of iterator are we turning this into?
Sourceยง

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Sourceยง

impl<E> PartialEq for HasManyModel<E>

Sourceยง

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

Tests for self and other values to be equal, and is used by ==.
1.0.0ยง

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

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

impl<E> Eq for HasManyModel<E>

Auto Trait Implementationsยง

Blanket Implementationsยง

ยง

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

ยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
ยง

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

ยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
ยง

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

ยง

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

Mutably borrows from an owned value. Read more
ยง

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

ยง

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
ยง

impl<T> From<T> for T

ยง

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
ยง

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

ยง

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
ยง

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

ยง

type Owned = T

The resulting type after obtaining ownership.
ยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
ยง

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

Uses borrowed data to replace owned data, usually by cloning. Read more
ยง

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

ยง

type Error = Infallible

The type returned in the event of a conversion error.
ยง

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

Performs the conversion.
ยง

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

ยง

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

The type returned in the event of a conversion error.
ยง

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

Performs the conversion.
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