pub fn null<S>() -> Expr<Nil, Nullable<S>>where
S: NullValue,Expand description
A typed SQL NULL, for the one position an Option can’t say it:
SET column = NULL assigns, and an assignment has no Option to be
None. null::<Text>() is Nullable<Text>, so only a nullable column
accepts it.