Check if the [ActiveValue] is [ActiveValue::Set]
(&self)
| 793 | |
| 794 | /// Check if the [ActiveValue] is [ActiveValue::Set] |
| 795 | pub fn is_set(&self) -> bool { |
| 796 | matches!(self, Self::Set(_)) |
| 797 | } |
| 798 | |
| 799 | /// Create an [ActiveValue::Unchanged] |
| 800 | pub fn unchanged(value: V) -> Self { |
no outgoing calls
no test coverage detected