Describe default value of ActiveValue on document (#556)

This commit is contained in:
Ken-Miura 2022-03-02 13:24:49 +09:00 committed by GitHub
parent 858953b478
commit 483de17da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -652,6 +652,7 @@ impl<V> Default for ActiveValue<V>
where
V: Into<Value>,
{
/// Create an [ActiveValue::NotSet]
fn default() -> Self {
Self::NotSet
}