#[repr(C)]pub enum VldbSqliteFfiValueKind {
Null = 0,
Int64 = 1,
Float64 = 2,
String = 3,
Bytes = 4,
Bool = 5,
}Expand description
FFI SQL 值类型枚举。 FFI SQL value-kind enum.
Variants§
Null = 0
Null 值。 Null value.
Int64 = 1
64 位有符号整数。 Signed 64-bit integer.
Float64 = 2
64 位浮点数。 64-bit floating point number.
String = 3
UTF-8 字符串。 UTF-8 string.
Bytes = 4
原始字节数组。 Raw byte array.
Bool = 5
布尔值。 Boolean value.
Trait Implementations§
Source§impl Clone for VldbSqliteFfiValueKind
impl Clone for VldbSqliteFfiValueKind
Source§fn clone(&self) -> VldbSqliteFfiValueKind
fn clone(&self) -> VldbSqliteFfiValueKind
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 VldbSqliteFfiValueKind
impl Debug for VldbSqliteFfiValueKind
Source§impl PartialEq for VldbSqliteFfiValueKind
impl PartialEq for VldbSqliteFfiValueKind
impl Copy for VldbSqliteFfiValueKind
impl Eq for VldbSqliteFfiValueKind
impl StructuralPartialEq for VldbSqliteFfiValueKind
Auto Trait Implementations§
impl Freeze for VldbSqliteFfiValueKind
impl RefUnwindSafe for VldbSqliteFfiValueKind
impl Send for VldbSqliteFfiValueKind
impl Sync for VldbSqliteFfiValueKind
impl Unpin for VldbSqliteFfiValueKind
impl UnsafeUnpin for VldbSqliteFfiValueKind
impl UnwindSafe for VldbSqliteFfiValueKind
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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