pub enum BooleanNode {
False,
True,
}Variants§
Trait Implementations§
Source§impl Clone for BooleanNode
impl Clone for BooleanNode
Source§fn clone(&self) -> BooleanNode
fn clone(&self) -> BooleanNode
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 BooleanNode
impl Debug for BooleanNode
Source§impl FromStr for BooleanNode
impl FromStr for BooleanNode
Source§type Err = YggdrasilError<DejavuRule>
type Err = YggdrasilError<DejavuRule>
The associated error which can be returned from parsing.
Source§fn from_str(input: &str) -> Result<Self, YggdrasilError<DejavuRule>>
fn from_str(input: &str) -> Result<Self, YggdrasilError<DejavuRule>>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for BooleanNode
impl Hash for BooleanNode
Auto Trait Implementations§
impl Freeze for BooleanNode
impl RefUnwindSafe for BooleanNode
impl Send for BooleanNode
impl Sync for BooleanNode
impl Unpin for BooleanNode
impl UnwindSafe for BooleanNode
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