pub enum AssociationType {
HasOne,
OptionHasOne,
HasMany,
HasManyThrough,
}
Expand description
The types of associations.
This is used for Error
to report which kind of association encountered an error.
Variants§
HasOne
There was an error with a HasOne
.
OptionHasOne
There was an error with an OptionHasOne
.
HasMany
There was an error with a HasMany
.
HasManyThrough
There was an error with a HasManyThrough
.
Trait Implementations§
Source§impl Clone for AssociationType
impl Clone for AssociationType
Source§fn clone(&self) -> AssociationType
fn clone(&self) -> AssociationType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssociationType
impl Debug for AssociationType
Source§impl Hash for AssociationType
impl Hash for AssociationType
Source§impl PartialEq for AssociationType
impl PartialEq for AssociationType
impl Copy for AssociationType
impl Eq for AssociationType
impl StructuralPartialEq for AssociationType
Auto Trait Implementations§
impl Freeze for AssociationType
impl RefUnwindSafe for AssociationType
impl Send for AssociationType
impl Sync for AssociationType
impl Unpin for AssociationType
impl UnwindSafe for AssociationType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.