pub trait PCM: Sized {
// Required methods
spec fn valid(self) -> bool;
spec fn op(self, other: Self) -> Self;
spec fn unit() -> Self;
proof fn closed_under_incl(a: Self, b: Self);
proof fn commutative(a: Self, b: Self);
proof fn associative(a: Self, b: Self, c: Self);
proof fn op_unit(a: Self);
proof fn unit_valid();
}
Expand description
See Resource
for more information.
Required Methods§
sourceproof fn closed_under_incl(a: Self, b: Self)
proof fn closed_under_incl(a: Self, b: Self)
sourceproof fn commutative(a: Self, b: Self)
proof fn commutative(a: Self, b: Self)
sourceproof fn associative(a: Self, b: Self, c: Self)
proof fn associative(a: Self, b: Self, c: Self)
sourceproof fn unit_valid()
proof fn unit_valid()
Object Safety§
This trait is not object safe.