pub struct SecurityRequirements {
pub isolation_level: IsolationLevel,
pub domain_name: String,
pub classification: SecurityClassification,
pub access_permissions: AccessPermissions,
pub encryption_requirements: EncryptionRequirements,
pub allowed_operations: HashSet<QuantumOperation>,
pub restricted_operations: HashSet<QuantumOperation>,
}Fields§
§isolation_level: IsolationLevel§domain_name: String§classification: SecurityClassification§access_permissions: AccessPermissions§encryption_requirements: EncryptionRequirements§allowed_operations: HashSet<QuantumOperation>§restricted_operations: HashSet<QuantumOperation>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SecurityRequirements
impl RefUnwindSafe for SecurityRequirements
impl Send for SecurityRequirements
impl Sync for SecurityRequirements
impl Unpin for SecurityRequirements
impl UnwindSafe for SecurityRequirements
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more