You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the intended owner of the new object has a property named `ownership_quota' and the value of that property is an integer, then `create()' treats that value
as a "quota". If the quota is less than or equal to zero, then the quota is considered to be exhausted and `create()' raises `E_QUOTA' instead of creating an
object. Otherwise, the quota is decremented and stored back into the `ownership_quota' property as a part of the creation of the new object.
let owner = (owner != NOTHING).then_some(owner);// TODO(rdaum): ownership_quota support// If the intended owner of the new object has a property named `ownership_quota' and the value of that property is an integer, then `create()' treats that value// as a "quota". If the quota is less than or equal to zero, then the quota is considered to be exhausted and `create()' raises `E_QUOTA' instead of creating an// object. Otherwise, the quota is decremented and stored back into the `ownership_quota' property as a part of the creation of the new object.let attrs = ObjAttrs{
owner,name:None,
The text was updated successfully, but these errors were encountered:
If the intended owner of the new object has a property named `ownership_quota' and the value of that property is an integer, then `create()' treats that value
as a "quota". If the quota is less than or equal to zero, then the quota is considered to be exhausted and `create()' raises `E_QUOTA' instead of creating an
object. Otherwise, the quota is decremented and stored back into the `ownership_quota' property as a part of the creation of the new object.
moor/crates/db/src/db_worldstate.rs
Line 109 in a951a75
The text was updated successfully, but these errors were encountered: