Enum ply_rs::ply::ScalarType
source · [−]pub enum ScalarType {
Char,
UChar,
Short,
UShort,
Int,
UInt,
Float,
Double,
}
Expand description
Scalar type used to encode properties in the payload.
For the translation to rust types, see individual documentation.
Variants
Char
Signed 8 bit integer, rust: i8
.
UChar
Unsigned 8 bit integer, rust: u8
.
Short
Signed 16 bit integer, rust: i16
.
UShort
Unsigned 16 bit integer, rust: u16
.
Int
Signed 32 bit integer, rust: i32
.
UInt
Unsigned 32 bit integer, rust: u32
.
Float
32 bit floating point number, rust: f32
.
Double
64 bit floating point number, rust: f64
.
Trait Implementations
sourceimpl Clone for ScalarType
impl Clone for ScalarType
sourcefn clone(&self) -> ScalarType
fn clone(&self) -> ScalarType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ScalarType
impl Debug for ScalarType
sourceimpl PartialEq<ScalarType> for ScalarType
impl PartialEq<ScalarType> for ScalarType
impl Eq for ScalarType
impl StructuralEq for ScalarType
impl StructuralPartialEq for ScalarType
Auto Trait Implementations
impl RefUnwindSafe for ScalarType
impl Send for ScalarType
impl Sync for ScalarType
impl Unpin for ScalarType
impl UnwindSafe for ScalarType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more