pub enum TGetInfoValue {
StringValue(String),
SmallIntValue(i16),
IntegerBitmask(i32),
IntegerFlag(i32),
BinaryValue(i32),
LenValue(i64),
}
Variants§
StringValue(String)
SmallIntValue(i16)
IntegerBitmask(i32)
IntegerFlag(i32)
BinaryValue(i32)
LenValue(i64)
Trait Implementations§
Source§impl Clone for TGetInfoValue
impl Clone for TGetInfoValue
Source§fn clone(&self) -> TGetInfoValue
fn clone(&self) -> TGetInfoValue
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 TGetInfoValue
impl Debug for TGetInfoValue
Source§impl Hash for TGetInfoValue
impl Hash for TGetInfoValue
Source§impl Ord for TGetInfoValue
impl Ord for TGetInfoValue
Source§fn cmp(&self, other: &TGetInfoValue) -> Ordering
fn cmp(&self, other: &TGetInfoValue) -> 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 TGetInfoValue
impl PartialEq for TGetInfoValue
Source§impl PartialOrd for TGetInfoValue
impl PartialOrd for TGetInfoValue
Source§impl TSerializable for TGetInfoValue
impl TSerializable for TGetInfoValue
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TGetInfoValue>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TGetInfoValue
impl StructuralPartialEq for TGetInfoValue
Auto Trait Implementations§
impl Freeze for TGetInfoValue
impl RefUnwindSafe for TGetInfoValue
impl Send for TGetInfoValue
impl Sync for TGetInfoValue
impl Unpin for TGetInfoValue
impl UnwindSafe for TGetInfoValue
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