pub struct BooleanValue {
pub value: bool,
pub span: Span,
}Fields§
§value: bool§span: SpanTrait Implementations§
Source§impl Clone for BooleanValue
impl Clone for BooleanValue
Source§fn clone(&self) -> BooleanValue
fn clone(&self) -> BooleanValue
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 moreimpl Copy for BooleanValue
Source§impl Debug for BooleanValue
impl Debug for BooleanValue
impl Eq for BooleanValue
Source§impl Hash for BooleanValue
impl Hash for BooleanValue
Source§impl PartialEq for BooleanValue
impl PartialEq for BooleanValue
Source§fn eq(&self, other: &BooleanValue) -> bool
fn eq(&self, other: &BooleanValue) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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