pub enum PermissionUpdateDestination {
UserSettings,
ProjectSettings,
LocalSettings,
Session,
}Expand description
Destination for applying a permission update.
Determines where the permission change is persisted.
Variants§
UserSettings
Persist update to user settings.
ProjectSettings
Persist update to project settings.
LocalSettings
Persist update to local project settings.
Session
Apply update only for the current session.
Trait Implementations§
Source§impl Clone for PermissionUpdateDestination
impl Clone for PermissionUpdateDestination
Source§fn clone(&self) -> PermissionUpdateDestination
fn clone(&self) -> PermissionUpdateDestination
Returns a duplicate of the value. Read more
1.0.0 · 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 PermissionUpdateDestination
impl Debug for PermissionUpdateDestination
Source§impl<'de> Deserialize<'de> for PermissionUpdateDestination
impl<'de> Deserialize<'de> for PermissionUpdateDestination
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 PermissionUpdateDestination
impl StructuralPartialEq for PermissionUpdateDestination
Auto Trait Implementations§
impl Freeze for PermissionUpdateDestination
impl RefUnwindSafe for PermissionUpdateDestination
impl Send for PermissionUpdateDestination
impl Sync for PermissionUpdateDestination
impl Unpin for PermissionUpdateDestination
impl UnsafeUnpin for PermissionUpdateDestination
impl UnwindSafe for PermissionUpdateDestination
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