pub enum PermissionsModifyRulesScope {
Session,
Location,
Unknown,
}Expand description
Whether the change applies to ephemeral session-scoped rules (cleared at session end) or to location-scoped rules persisted via the location-permissions config file.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Session
Apply the rule change only to this session.
Location
Persist the rule change for this project location.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for PermissionsModifyRulesScope
impl Clone for PermissionsModifyRulesScope
Source§fn clone(&self) -> PermissionsModifyRulesScope
fn clone(&self) -> PermissionsModifyRulesScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PermissionsModifyRulesScope
impl Debug for PermissionsModifyRulesScope
Source§impl Default for PermissionsModifyRulesScope
impl Default for PermissionsModifyRulesScope
Source§fn default() -> PermissionsModifyRulesScope
fn default() -> PermissionsModifyRulesScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PermissionsModifyRulesScope
impl<'de> Deserialize<'de> for PermissionsModifyRulesScope
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PermissionsModifyRulesScope
Source§impl PartialEq for PermissionsModifyRulesScope
impl PartialEq for PermissionsModifyRulesScope
Source§fn eq(&self, other: &PermissionsModifyRulesScope) -> bool
fn eq(&self, other: &PermissionsModifyRulesScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PermissionsModifyRulesScope
Auto Trait Implementations§
impl Freeze for PermissionsModifyRulesScope
impl RefUnwindSafe for PermissionsModifyRulesScope
impl Send for PermissionsModifyRulesScope
impl Sync for PermissionsModifyRulesScope
impl Unpin for PermissionsModifyRulesScope
impl UnsafeUnpin for PermissionsModifyRulesScope
impl UnwindSafe for PermissionsModifyRulesScope
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