pub struct IgniteChar(pub u16);Expand description
Ignite CHAR (type code 7): a single UTF-16 code unit. Distinct from
String (VARCHAR, type code 9) at the wire level.
Tuple Fields§
§0: u16Trait Implementations§
Source§impl Clone for IgniteChar
impl Clone for IgniteChar
Source§fn clone(&self) -> IgniteChar
fn clone(&self) -> IgniteChar
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IgniteChar
Source§impl Debug for IgniteChar
impl Debug for IgniteChar
impl Eq for IgniteChar
Source§impl FieldRead for IgniteChar
impl FieldRead for IgniteChar
fn read_field(r: &BinaryObjectReader, name: &str) -> Result<Self>
Source§impl FieldWrite for IgniteChar
impl FieldWrite for IgniteChar
Source§fn write_field(&self, b: BinaryObjectBuilder, name: &str) -> BinaryObjectBuilder
fn write_field(&self, b: BinaryObjectBuilder, name: &str) -> BinaryObjectBuilder
Write
self as field name, returning the builder for chaining.Source§fn field_type_code() -> i32
fn field_type_code() -> i32
The Ignite wire type code for this field’s value.
Source§impl Hash for IgniteChar
impl Hash for IgniteChar
Source§impl Ord for IgniteChar
impl Ord for IgniteChar
Source§fn cmp(&self, other: &IgniteChar) -> Ordering
fn cmp(&self, other: &IgniteChar) -> Ordering
1.21.0 (const: unstable) · 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 IgniteChar
impl PartialEq for IgniteChar
Source§impl PartialOrd for IgniteChar
impl PartialOrd for IgniteChar
impl StructuralPartialEq for IgniteChar
Auto Trait Implementations§
impl Freeze for IgniteChar
impl RefUnwindSafe for IgniteChar
impl Send for IgniteChar
impl Sync for IgniteChar
impl Unpin for IgniteChar
impl UnsafeUnpin for IgniteChar
impl UnwindSafe for IgniteChar
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