pub enum HomogeneousAggregate {
Homogeneous(Reg),
NoData,
}
Expand description
Return value from the homogeneous_aggregate
test function.
Variants§
Homogeneous(Reg)
Yes, all the “leaf fields” of this struct are passed in the
same way (specified in the Reg
value).
NoData
There are no leaf fields at all.
Implementations§
Trait Implementations§
Source§impl Clone for HomogeneousAggregate
impl Clone for HomogeneousAggregate
Source§fn clone(&self) -> HomogeneousAggregate
fn clone(&self) -> HomogeneousAggregate
Returns a copy 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 HomogeneousAggregate
impl Debug for HomogeneousAggregate
impl Copy for HomogeneousAggregate
Auto Trait Implementations§
impl Freeze for HomogeneousAggregate
impl RefUnwindSafe for HomogeneousAggregate
impl Send for HomogeneousAggregate
impl Sync for HomogeneousAggregate
impl Unpin for HomogeneousAggregate
impl UnwindSafe for HomogeneousAggregate
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