#[repr(i32)]pub enum SqlPayloadVersion {
SqlPlainBuffer = 1,
SqlFlatBuffers = 2,
}
Expand description
SQLQuery
Variants§
Implementations§
Source§impl SqlPayloadVersion
impl SqlPayloadVersion
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for SqlPayloadVersion
impl Clone for SqlPayloadVersion
Source§fn clone(&self) -> SqlPayloadVersion
fn clone(&self) -> SqlPayloadVersion
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 SqlPayloadVersion
impl Debug for SqlPayloadVersion
Source§impl Default for SqlPayloadVersion
impl Default for SqlPayloadVersion
Source§fn default() -> SqlPayloadVersion
fn default() -> SqlPayloadVersion
Returns the “default value” for a type. Read more
Source§impl From<SqlPayloadVersion> for i32
impl From<SqlPayloadVersion> for i32
Source§fn from(value: SqlPayloadVersion) -> i32
fn from(value: SqlPayloadVersion) -> i32
Converts to this type from the input type.
Source§impl Hash for SqlPayloadVersion
impl Hash for SqlPayloadVersion
Source§impl Ord for SqlPayloadVersion
impl Ord for SqlPayloadVersion
Source§fn cmp(&self, other: &SqlPayloadVersion) -> Ordering
fn cmp(&self, other: &SqlPayloadVersion) -> 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 SqlPayloadVersion
impl PartialEq for SqlPayloadVersion
Source§impl PartialOrd for SqlPayloadVersion
impl PartialOrd for SqlPayloadVersion
Source§impl TryFrom<i32> for SqlPayloadVersion
impl TryFrom<i32> for SqlPayloadVersion
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<SqlPayloadVersion, UnknownEnumValue>
fn try_from(value: i32) -> Result<SqlPayloadVersion, UnknownEnumValue>
Performs the conversion.
impl Copy for SqlPayloadVersion
impl Eq for SqlPayloadVersion
impl StructuralPartialEq for SqlPayloadVersion
Auto Trait Implementations§
impl Freeze for SqlPayloadVersion
impl RefUnwindSafe for SqlPayloadVersion
impl Send for SqlPayloadVersion
impl Sync for SqlPayloadVersion
impl Unpin for SqlPayloadVersion
impl UnwindSafe for SqlPayloadVersion
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