pub struct SetOperationFact {
pub kind: String,
pub all: bool,
pub distinct: bool,
pub output_columns: Vec<String>,
pub branches: Vec<SetOperationBranchFact>,
}Expand description
Compact fact about a set operation.
Fields§
§kind: String§all: bool§distinct: bool§output_columns: Vec<String>§branches: Vec<SetOperationBranchFact>Trait Implementations§
Source§impl Clone for SetOperationFact
impl Clone for SetOperationFact
Source§fn clone(&self) -> SetOperationFact
fn clone(&self) -> SetOperationFact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SetOperationFact
impl Debug for SetOperationFact
Source§impl<'de> Deserialize<'de> for SetOperationFact
impl<'de> Deserialize<'de> for SetOperationFact
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
Auto Trait Implementations§
impl Freeze for SetOperationFact
impl RefUnwindSafe for SetOperationFact
impl Send for SetOperationFact
impl Sync for SetOperationFact
impl Unpin for SetOperationFact
impl UnsafeUnpin for SetOperationFact
impl UnwindSafe for SetOperationFact
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