pub struct BooleanValue {
pub value: bool,
}
Expand description
AST Node of a boolean value
Fields§
§value: bool
Trait Implementations§
Source§impl Clone for BooleanValue
impl Clone for BooleanValue
Source§fn clone(&self) -> BooleanValue
fn clone(&self) -> BooleanValue
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 BooleanValue
impl Debug for BooleanValue
Source§impl<'a> From<BooleanValue> for Value<'a>
impl<'a> From<BooleanValue> for Value<'a>
Source§fn from(x: BooleanValue) -> Self
fn from(x: BooleanValue) -> Self
Converts to this type from the input type.
Source§impl From<bool> for BooleanValue
impl From<bool> for BooleanValue
Source§impl Hash for BooleanValue
impl Hash for BooleanValue
Source§impl PartialEq for BooleanValue
impl PartialEq for BooleanValue
Source§impl PrintNode for BooleanValue
impl PrintNode for BooleanValue
Source§impl<'a> ValueFromNode<'a> for BooleanValue
impl<'a> ValueFromNode<'a> for BooleanValue
impl Copy for BooleanValue
impl Eq for BooleanValue
impl StructuralPartialEq for BooleanValue
Auto Trait Implementations§
impl Freeze for BooleanValue
impl RefUnwindSafe for BooleanValue
impl Send for BooleanValue
impl Sync for BooleanValue
impl Unpin for BooleanValue
impl UnwindSafe for BooleanValue
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