pub struct NeoBoolean(/* private fields */);Expand description
Neo N3 Boolean type
Implementations§
Trait Implementations§
Source§impl BitAnd for NeoBoolean
impl BitAnd for NeoBoolean
Source§impl BitOr for NeoBoolean
impl BitOr for NeoBoolean
Source§impl BitXor for NeoBoolean
impl BitXor for NeoBoolean
Source§impl Clone for NeoBoolean
impl Clone for NeoBoolean
Source§fn clone(&self) -> NeoBoolean
fn clone(&self) -> NeoBoolean
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 NeoBoolean
Source§impl Debug for NeoBoolean
impl Debug for NeoBoolean
Source§impl Default for NeoBoolean
impl Default for NeoBoolean
Source§impl<'de> Deserialize<'de> for NeoBoolean
impl<'de> Deserialize<'de> for NeoBoolean
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for NeoBoolean
impl Display for NeoBoolean
impl Eq for NeoBoolean
Source§impl From<NeoBoolean> for bool
impl From<NeoBoolean> for bool
Source§fn from(value: NeoBoolean) -> Self
fn from(value: NeoBoolean) -> Self
Converts to this type from the input type.
Source§impl From<NeoBoolean> for NeoValue
impl From<NeoBoolean> for NeoValue
Source§fn from(value: NeoBoolean) -> Self
fn from(value: NeoBoolean) -> Self
Converts to this type from the input type.
Source§impl From<bool> for NeoBoolean
impl From<bool> for NeoBoolean
Source§impl Hash for NeoBoolean
impl Hash for NeoBoolean
Source§impl Not for NeoBoolean
impl Not for NeoBoolean
Source§impl PartialEq for NeoBoolean
impl PartialEq for NeoBoolean
Source§fn eq(&self, other: &NeoBoolean) -> bool
fn eq(&self, other: &NeoBoolean) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NeoBoolean
impl Serialize for NeoBoolean
impl StructuralPartialEq for NeoBoolean
Auto Trait Implementations§
impl Freeze for NeoBoolean
impl RefUnwindSafe for NeoBoolean
impl Send for NeoBoolean
impl Sync for NeoBoolean
impl Unpin for NeoBoolean
impl UnsafeUnpin for NeoBoolean
impl UnwindSafe for NeoBoolean
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