pub enum SqlInfoValue {
String(String),
Bool(bool),
BigInt(i64),
Bitmask(i32),
StringList(Vec<String>),
ListMap(BTreeMap<i32, Vec<i32>>),
}
Expand description
Represents a dynamic value
Variants§
String(String)
Bool(bool)
BigInt(i64)
Bitmask(i32)
StringList(Vec<String>)
ListMap(BTreeMap<i32, Vec<i32>>)
Trait Implementations§
Source§impl Clone for SqlInfoValue
impl Clone for SqlInfoValue
Source§fn clone(&self) -> SqlInfoValue
fn clone(&self) -> SqlInfoValue
Returns a copy 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 SqlInfoValue
impl Debug for SqlInfoValue
Source§impl From<&[&str]> for SqlInfoValue
impl From<&[&str]> for SqlInfoValue
Source§impl From<&str> for SqlInfoValue
impl From<&str> for SqlInfoValue
Source§impl From<bool> for SqlInfoValue
impl From<bool> for SqlInfoValue
Source§impl From<i32> for SqlInfoValue
impl From<i32> for SqlInfoValue
Source§impl From<i64> for SqlInfoValue
impl From<i64> for SqlInfoValue
Source§impl PartialEq for SqlInfoValue
impl PartialEq for SqlInfoValue
impl StructuralPartialEq for SqlInfoValue
Auto Trait Implementations§
impl Freeze for SqlInfoValue
impl RefUnwindSafe for SqlInfoValue
impl Send for SqlInfoValue
impl Sync for SqlInfoValue
impl Unpin for SqlInfoValue
impl UnwindSafe for SqlInfoValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request