pub trait DigitalDocumentPermissionTrait {
    // Required methods
    fn get_grantee(&self) -> &[GranteeProperty];
    fn take_grantee(&mut self) -> Vec<GranteeProperty>;
    fn get_permission_type(&self) -> &[PermissionTypeProperty];
    fn take_permission_type(&mut self) -> Vec<PermissionTypeProperty>;
}
Expand description

This trait is for properties from https://schema.org/DigitalDocumentPermission.

Required Methods§

Implementors§