pub struct ZUNIONSTORE<'a> {
pub destination: &'a [u8],
pub num_keys: i32,
pub keys: Vec<&'a [u8]>,
pub weights: Option<Vec<&'a [u8]>>,
pub aggregate: Option<AGGREGATE>,
}
Fields§
§destination: &'a [u8]
§num_keys: i32
§keys: Vec<&'a [u8]>
§weights: Option<Vec<&'a [u8]>>
§aggregate: Option<AGGREGATE>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ZUNIONSTORE<'a>
impl<'a> RefUnwindSafe for ZUNIONSTORE<'a>
impl<'a> Send for ZUNIONSTORE<'a>
impl<'a> Sync for ZUNIONSTORE<'a>
impl<'a> Unpin for ZUNIONSTORE<'a>
impl<'a> UnwindSafe for ZUNIONSTORE<'a>
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