pub struct BasicTypes {Show 13 fields
pub bool_value: bool,
pub byte_value: u8,
pub char_value: i8,
pub float32_value: f32,
pub float64_value: f64,
pub int8_value: i8,
pub uint8_value: u8,
pub int16_value: i16,
pub uint16_value: u16,
pub int32_value: i32,
pub uint32_value: u32,
pub int64_value: i64,
pub uint64_value: u64,
}Fields§
§bool_value: bool§byte_value: u8§char_value: i8§float32_value: f32§float64_value: f64§int8_value: i8§uint8_value: u8§int16_value: i16§uint16_value: u16§int32_value: i32§uint32_value: u32§int64_value: i64§uint64_value: u64Trait Implementations§
Source§impl Clone for BasicTypes
impl Clone for BasicTypes
Source§fn clone(&self) -> BasicTypes
fn clone(&self) -> BasicTypes
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 BasicTypes
impl Debug for BasicTypes
Source§impl Default for BasicTypes
impl Default for BasicTypes
Source§impl<'de> Deserialize<'de> for BasicTypes
impl<'de> Deserialize<'de> for BasicTypes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BasicTypes
impl PartialEq for BasicTypes
Source§impl Serialize for BasicTypes
impl Serialize for BasicTypes
impl Message for BasicTypes
impl StructuralPartialEq for BasicTypes
Auto Trait Implementations§
impl Freeze for BasicTypes
impl RefUnwindSafe for BasicTypes
impl Send for BasicTypes
impl Sync for BasicTypes
impl Unpin for BasicTypes
impl UnwindSafe for BasicTypes
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