Expand description
Marker types for limiting access.
Structs§
- NoAccess
- Zero-sized marker type that grants no access.
- Read
Only - Zero-sized marker type for allowing only read access.
- Read
Write - Zero-sized marker type for allowing both read and write access.
- Write
Only - Zero-sized marker type for allowing only write access.
Traits§
- Access
- Sealed trait that is implemented for the types in this module.
- Copyable
- Implemented for access types that permit copying of
AbstractRef
. - Readable
- Helper trait that is implemented by
ReadWrite
andReadOnly
. - Restrict
Access - A trait for restricting one
Access
type to anotherAccess
type. - Writable
- Helper trait that is implemented by
ReadWrite
andWriteOnly
.