pub enum RelationInclusion {
None,
All,
Specific(Vec<String>),
}Expand description
Relation inclusion for components (Sprint 17)
Variants§
Trait Implementations§
Source§impl Clone for RelationInclusion
impl Clone for RelationInclusion
Source§fn clone(&self) -> RelationInclusion
fn clone(&self) -> RelationInclusion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RelationInclusion
impl Debug for RelationInclusion
Source§impl PartialEq for RelationInclusion
impl PartialEq for RelationInclusion
impl StructuralPartialEq for RelationInclusion
Auto Trait Implementations§
impl Freeze for RelationInclusion
impl RefUnwindSafe for RelationInclusion
impl Send for RelationInclusion
impl Sync for RelationInclusion
impl Unpin for RelationInclusion
impl UnsafeUnpin for RelationInclusion
impl UnwindSafe for RelationInclusion
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