pub struct BoolExpression {
pub value: bool,
pub span: Span,
}Expand description
Literal bool expression “TRUE” or “FALSE”
Fields§
§value: boolThe boolean value
span: SpanSpan of “TRUE” or “FALSE”
Trait Implementations§
Source§impl Clone for BoolExpression
impl Clone for BoolExpression
Source§fn clone(&self) -> BoolExpression
fn clone(&self) -> BoolExpression
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 BoolExpression
impl Debug for BoolExpression
Auto Trait Implementations§
impl Freeze for BoolExpression
impl RefUnwindSafe for BoolExpression
impl Send for BoolExpression
impl Sync for BoolExpression
impl Unpin for BoolExpression
impl UnsafeUnpin for BoolExpression
impl UnwindSafe for BoolExpression
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