pub struct RCondition(pub List);Expand description
Tuple Fields§
§0: ListTrait Implementations§
Source§impl Clone for RCondition
impl Clone for RCondition
Source§fn clone(&self) -> RCondition
fn clone(&self) -> RCondition
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 RCondition
impl Debug for RCondition
Source§impl From<Condition> for RCondition
impl From<Condition> for RCondition
Source§impl From<RCondition> for List
impl From<RCondition> for List
Source§fn from(value: RCondition) -> Self
fn from(value: RCondition) -> Self
Converts to this type from the input type.
Source§impl From<RCondition> for Robj
impl From<RCondition> for Robj
Source§fn from(value: RCondition) -> Self
fn from(value: RCondition) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RCondition
impl PartialEq for RCondition
Source§fn eq(&self, other: &RCondition) -> bool
fn eq(&self, other: &RCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&List> for RCondition
impl TryFrom<&List> for RCondition
Source§impl TryFrom<&Robj> for RCondition
impl TryFrom<&Robj> for RCondition
Source§impl TryFrom<List> for RCondition
impl TryFrom<List> for RCondition
Source§impl TryFrom<RCondition> for Condition
impl TryFrom<RCondition> for Condition
Source§impl TryFrom<Robj> for RCondition
impl TryFrom<Robj> for RCondition
impl StructuralPartialEq for RCondition
Auto Trait Implementations§
impl Freeze for RCondition
impl RefUnwindSafe for RCondition
impl !Send for RCondition
impl !Sync for RCondition
impl Unpin for RCondition
impl UnsafeUnpin for RCondition
impl UnwindSafe for RCondition
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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