pub struct FleetProfilePermissions {
pub allow_shell: bool,
pub trust: bool,
pub approval_required: bool,
}Expand description
Safe permission defaults attached to a fleet profile.
Fields§
§allow_shell: boolPermit shell-capable tools for this profile when later consumed.
trust: boolPermit trusted/elevated execution for this profile when later consumed.
approval_required: boolRequire approval by default. This intentionally defaults on.
Trait Implementations§
Source§impl Clone for FleetProfilePermissions
impl Clone for FleetProfilePermissions
Source§fn clone(&self) -> FleetProfilePermissions
fn clone(&self) -> FleetProfilePermissions
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 FleetProfilePermissions
impl Debug for FleetProfilePermissions
Source§impl Default for FleetProfilePermissions
impl Default for FleetProfilePermissions
Source§impl<'de> Deserialize<'de> for FleetProfilePermissions
impl<'de> Deserialize<'de> for FleetProfilePermissions
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 FleetProfilePermissions
Source§impl PartialEq for FleetProfilePermissions
impl PartialEq for FleetProfilePermissions
Source§impl Serialize for FleetProfilePermissions
impl Serialize for FleetProfilePermissions
impl StructuralPartialEq for FleetProfilePermissions
Auto Trait Implementations§
impl Freeze for FleetProfilePermissions
impl RefUnwindSafe for FleetProfilePermissions
impl Send for FleetProfilePermissions
impl Sync for FleetProfilePermissions
impl Unpin for FleetProfilePermissions
impl UnsafeUnpin for FleetProfilePermissions
impl UnwindSafe for FleetProfilePermissions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.