Trait hydro_lang::singleton::ZipResult
source · pub trait ZipResult<'a, Other> {
type Out;
type Location;
// Required methods
fn other_location(other: &Other) -> Self::Location;
fn other_ir_node(other: Other) -> HydroNode;
fn make(location: Self::Location, ir_node: HydroNode) -> Self::Out;
}
Required Associated Types§
Required Methods§
fn other_location(other: &Other) -> Self::Location
fn other_ir_node(other: Other) -> HydroNode
fn make(location: Self::Location, ir_node: HydroNode) -> Self::Out
Object Safety§
This trait is not object safe.