Skip to main content

OrOperator

Trait OrOperator 

Source
pub trait OrOperator<RightHandSide = Self> {
    type Output;

    // Required methods
    fn or(
        &self,
        right_hand_side: &RightHandSide,
    ) -> Result<Self::Output, GraphComputingError>;
    fn or_with_mask(
        &self,
        right_hand_side: &RightHandSide,
        mask: &RightHandSide,
    ) -> Result<Self::Output, GraphComputingError>;
}

Required Associated Types§

Required Methods§

Source

fn or( &self, right_hand_side: &RightHandSide, ) -> Result<Self::Output, GraphComputingError>

Source

fn or_with_mask( &self, right_hand_side: &RightHandSide, mask: &RightHandSide, ) -> Result<Self::Output, GraphComputingError>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§