pub struct RollupIndex {
pub name: Identifier,
pub expressions: Vec<Identifier>,
}Expand description
RollupIndex - A single rollup index: name(col1, col2)
Fields§
§name: Identifier§expressions: Vec<Identifier>Trait Implementations§
Source§impl Clone for RollupIndex
impl Clone for RollupIndex
Source§fn clone(&self) -> RollupIndex
fn clone(&self) -> RollupIndex
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 RollupIndex
impl Debug for RollupIndex
Source§impl<'de> Deserialize<'de> for RollupIndex
impl<'de> Deserialize<'de> for RollupIndex
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 RollupIndex
impl PartialEq for RollupIndex
Source§impl Serialize for RollupIndex
impl Serialize for RollupIndex
impl StructuralPartialEq for RollupIndex
Auto Trait Implementations§
impl Freeze for RollupIndex
impl RefUnwindSafe for RollupIndex
impl Send for RollupIndex
impl Sync for RollupIndex
impl Unpin for RollupIndex
impl UnwindSafe for RollupIndex
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