pub struct Aggregate {
pub int: i32,
pub float_number: f64,
pub text: String,
pub list: Vec<f64>,
pub tuple_data: (bool, i64),
pub map: HashMap<String, i32>,
}Fields§
§int: i32§float_number: f64§text: String§list: Vec<f64>§tuple_data: (bool, i64)§map: HashMap<String, i32>Implementations§
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnwindSafe for Aggregate
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