pub struct IntersectParam {
pub flavor: IntersectFlavor,
pub lhs: Box<GrassIR>,
pub rhs: Box<GrassIR>,
pub sorted: bool,
}Fields§
§flavor: IntersectFlavorThe flavor of the insection operator
lhs: Box<GrassIR>The left-hand-side operand
rhs: Box<GrassIR>The right-hand-side operand
sorted: boolIf we are using the sorted algorithm
Trait Implementations§
Source§impl Clone for IntersectParam
impl Clone for IntersectParam
Source§fn clone(&self) -> IntersectParam
fn clone(&self) -> IntersectParam
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 IntersectParam
impl Debug for IntersectParam
Source§impl<'de> Deserialize<'de> for IntersectParam
impl<'de> Deserialize<'de> for IntersectParam
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 IntersectParam
impl RefUnwindSafe for IntersectParam
impl Send for IntersectParam
impl Sync for IntersectParam
impl Unpin for IntersectParam
impl UnwindSafe for IntersectParam
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