pub struct EnvironmentPermissionPolicy {
pub id: String,
pub org_id: Option<String>,
pub workspace_id: Option<String>,
pub environment: MockEnvironmentName,
pub permission: String,
pub allowed_roles: Vec<String>,
pub created_at: DateTime<Utc>,
}Will be extracted to mockforge-workspace crate
Expand description
Environment permission policy
Defines which roles are allowed to perform specific actions in specific environments.
Fields§
§id: StringWill be extracted to mockforge-workspace crate
Unique identifier
org_id: Option<String>Will be extracted to mockforge-workspace crate
Organization ID (optional, for org-wide policies)
workspace_id: Option<String>Will be extracted to mockforge-workspace crate
Workspace ID (optional, for workspace-specific policies)
environment: MockEnvironmentNameWill be extracted to mockforge-workspace crate
Environment this policy applies to
permission: StringWill be extracted to mockforge-workspace crate
Permission this policy controls
allowed_roles: Vec<String>Will be extracted to mockforge-workspace crate
Roles allowed to perform this action in this environment
created_at: DateTime<Utc>Will be extracted to mockforge-workspace crate
Created timestamp
Implementations§
Source§impl EnvironmentPermissionPolicy
impl EnvironmentPermissionPolicy
Sourcepub fn new(
environment: MockEnvironmentName,
permission: Permission,
allowed_roles: Vec<String>,
) -> Self
👎Deprecated: Will be extracted to mockforge-workspace crate
pub fn new( environment: MockEnvironmentName, permission: Permission, allowed_roles: Vec<String>, ) -> Self
Will be extracted to mockforge-workspace crate
Create a new environment permission policy
Sourcepub fn allows_role(&self, role: &str) -> bool
👎Deprecated: Will be extracted to mockforge-workspace crate
pub fn allows_role(&self, role: &str) -> bool
Will be extracted to mockforge-workspace crate
Check if a role is allowed for this policy
Trait Implementations§
Source§impl Clone for EnvironmentPermissionPolicy
impl Clone for EnvironmentPermissionPolicy
Source§fn clone(&self) -> EnvironmentPermissionPolicy
fn clone(&self) -> EnvironmentPermissionPolicy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EnvironmentPermissionPolicy
impl Debug for EnvironmentPermissionPolicy
Source§impl<'de> Deserialize<'de> for EnvironmentPermissionPolicy
impl<'de> Deserialize<'de> for EnvironmentPermissionPolicy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for EnvironmentPermissionPolicy
impl RefUnwindSafe for EnvironmentPermissionPolicy
impl Send for EnvironmentPermissionPolicy
impl Sync for EnvironmentPermissionPolicy
impl Unpin for EnvironmentPermissionPolicy
impl UnsafeUnpin for EnvironmentPermissionPolicy
impl UnwindSafe for EnvironmentPermissionPolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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