pub struct RelationInsert {}Implementations§
Source§impl RelationInsert
impl RelationInsert
pub fn into_insert_statements( rows_by_level: HashMap<i32, HashSet<&Rc<PsqlTableRow>>>, ) -> ResultAnyError<Vec<String>>
pub fn table_rows_into_insert_statement( rows: &HashSet<&Rc<PsqlTableRow>>, ) -> ResultAnyError<Vec<String>>
pub fn table_row_into_insert_statement( table: &PsqlTable, rows: &Vec<&Rc<PsqlTableRow>>, ) -> ResultAnyError<String>
Auto Trait Implementations§
impl Freeze for RelationInsert
impl RefUnwindSafe for RelationInsert
impl Send for RelationInsert
impl Sync for RelationInsert
impl Unpin for RelationInsert
impl UnsafeUnpin for RelationInsert
impl UnwindSafe for RelationInsert
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more