FlattenIntoArgs

Trait FlattenIntoArgs 

Source
pub trait FlattenIntoArgs {
    // Required method
    fn flatten_into(self, out: &mut Vec<Arg>);
}
Expand description

用 trait 实现 go-sqlbuilder Flatten 的“递归展开”体验。

Required Methods§

Source

fn flatten_into(self, out: &mut Vec<Arg>)

Implementations on Foreign Types§

Source§

impl<T: FlattenIntoArgs> FlattenIntoArgs for Vec<T>

Source§

fn flatten_into(self, out: &mut Vec<Arg>)

Source§

impl<T: FlattenIntoArgs, const N: usize> FlattenIntoArgs for [T; N]

Source§

fn flatten_into(self, out: &mut Vec<Arg>)

Implementors§