Skip to main content

StringBinaryExpr

Trait StringBinaryExpr 

Source
pub trait StringBinaryExpr<Rhs, Result> {
    type Output;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementations on Foreign Types§

Source§

impl<Result> StringBinaryExpr<Option<String>, Result> for Option<String>

Source§

type Output = Option<Result>

Source§

impl<Result> StringBinaryExpr<Option<String>, Result> for String

Source§

type Output = Option<Result>

Source§

impl<Result> StringBinaryExpr<String, Result> for Option<String>

Source§

type Output = Option<Result>

Source§

impl<Result> StringBinaryExpr<String, Result> for String

Source§

type Output = Result

Implementors§