Function google_cloud_spanner::mutation::replace [−][src]
pub fn replace<T, C>(table: T, columns: Vec<C>, values: Vec<Kind>) -> Mutation where
T: Into<String>,
C: Into<String>, Expand description
replace returns a Mutation to insert a row into a table, deleting any existing row. Unlike InsertOrUpdate, this means any values not explicitly written become NULL.
For a similar example, See Update.