pub struct TBoolValue {
pub value: Option<bool>,
}
Fields§
§value: Option<bool>
Implementations§
Source§impl TBoolValue
impl TBoolValue
Trait Implementations§
Source§impl Clone for TBoolValue
impl Clone for TBoolValue
Source§fn clone(&self) -> TBoolValue
fn clone(&self) -> TBoolValue
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 TBoolValue
impl Debug for TBoolValue
Source§impl Default for TBoolValue
impl Default for TBoolValue
Source§fn default() -> TBoolValue
fn default() -> TBoolValue
Returns the “default value” for a type. Read more
Source§impl Hash for TBoolValue
impl Hash for TBoolValue
Source§impl Ord for TBoolValue
impl Ord for TBoolValue
Source§fn cmp(&self, other: &TBoolValue) -> Ordering
fn cmp(&self, other: &TBoolValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TBoolValue
impl PartialEq for TBoolValue
Source§impl PartialOrd for TBoolValue
impl PartialOrd for TBoolValue
Source§impl TSerializable for TBoolValue
impl TSerializable for TBoolValue
fn read_from_in_protocol(i_prot: &mut dyn TInputProtocol) -> Result<TBoolValue>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TBoolValue
impl StructuralPartialEq for TBoolValue
Auto Trait Implementations§
impl Freeze for TBoolValue
impl RefUnwindSafe for TBoolValue
impl Send for TBoolValue
impl Sync for TBoolValue
impl Unpin for TBoolValue
impl UnwindSafe for TBoolValue
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