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