Skip to main content

HasManyModel

Enum HasManyModel 

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

Container for 1-N or M-N related Models

Variants§

§

NotSet

Unspecified value, do nothing

§

Replace(Vec<<E as EntityTrait>::ActiveModelEx>)

Replace all items with this value set; delete leftovers

§

Append(Vec<<E as EntityTrait>::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) -> HasManyModel<E>

Take ownership of the models, leaving NotSet in place

Source

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

Borrow models as slice

Source

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

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

Source

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

Consume self as vector

Source

pub fn empty_holder(&self) -> HasManyModel<E>

Returns an empty container of self

Source

pub fn push<AM>(&mut self, model: AM) -> &mut HasManyModel<E>
where AM: Into<<E as EntityTrait>::ActiveModelEx>,

Push an item to self

Source

pub fn append<AM>(&mut self, model: AM) -> &mut HasManyModel<E>
where AM: Into<<E as EntityTrait>::ActiveModelEx>,

Push an item to self, but convert Replace to Append

Source

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

Replace all items in this set

Source

pub fn convert_to_append(&mut self) -> &mut HasManyModel<E>

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 as EntityTrait>::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 for HasManyModel<E>

Source§

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
Source§

impl<E> Debug for HasManyModel<E>

Source§

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

Formats the value using the given formatter. Read more
Source§

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

Source§

fn default() -> HasManyModel<E>

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

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

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

Source§

fn from(value: Vec<<E as EntityTrait>::ActiveModelEx>) -> HasManyModel<E>

Converts to this type from the input type.
Source§

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

Source§

type Output = <E as EntityTrait>::ActiveModelEx

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<HasManyModel<E> as Index<usize>>::Output

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

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

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <HasManyModel<E> as Index<usize>>::Output

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

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

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) -> <HasManyModel<E> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<E> PartialEq for HasManyModel<E>

Source§

fn eq(&self, other: &HasManyModel<E>) -> 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.
Source§

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

Checks if this value is equivalent to the given key. 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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
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> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
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<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