pub enum LoadingSides {
Both,
Lhs,
Rhs,
None,
}
Expand description
Specifies which input(s) a plane role participates in loading.
Variants§
Implementations§
Source§impl LoadingSides
impl LoadingSides
Sourcepub fn includes_lhs(&self) -> bool
pub fn includes_lhs(&self) -> bool
Returns true
if Lhs is included.
Sourcepub fn includes_rhs(&self) -> bool
pub fn includes_rhs(&self) -> bool
Returns true
if Rhs is included.
Sourcepub fn includes(&self, ident: InputIdent) -> bool
pub fn includes(&self, ident: InputIdent) -> bool
Returns true
if the given input is included.
Trait Implementations§
Source§impl Clone for LoadingSides
impl Clone for LoadingSides
Source§fn clone(&self) -> LoadingSides
fn clone(&self) -> LoadingSides
Returns a duplicate 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 LoadingSides
impl Debug for LoadingSides
Source§impl Hash for LoadingSides
impl Hash for LoadingSides
Source§impl PartialEq for LoadingSides
impl PartialEq for LoadingSides
impl Copy for LoadingSides
impl Eq for LoadingSides
impl StructuralPartialEq for LoadingSides
Auto Trait Implementations§
impl Freeze for LoadingSides
impl RefUnwindSafe for LoadingSides
impl Send for LoadingSides
impl Sync for LoadingSides
impl Unpin for LoadingSides
impl UnwindSafe for LoadingSides
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.