pub struct PermissionDecisionApproveForLocation {
pub approval: PermissionDecisionApproveForLocationApproval,
pub kind: PermissionDecisionApproveForLocationKind,
pub location_key: String,
}Expand description
Schema for the PermissionDecisionApproveForLocation type.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§approval: PermissionDecisionApproveForLocationApprovalApproval to persist for this location
kind: PermissionDecisionApproveForLocationKindApprove and persist for this project location
location_key: StringLocation key (git root or cwd) to persist the approval to
Trait Implementations§
Source§impl Clone for PermissionDecisionApproveForLocation
impl Clone for PermissionDecisionApproveForLocation
Source§fn clone(&self) -> PermissionDecisionApproveForLocation
fn clone(&self) -> PermissionDecisionApproveForLocation
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<'de> Deserialize<'de> for PermissionDecisionApproveForLocation
impl<'de> Deserialize<'de> for PermissionDecisionApproveForLocation
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
Auto Trait Implementations§
impl Freeze for PermissionDecisionApproveForLocation
impl RefUnwindSafe for PermissionDecisionApproveForLocation
impl Send for PermissionDecisionApproveForLocation
impl Sync for PermissionDecisionApproveForLocation
impl Unpin for PermissionDecisionApproveForLocation
impl UnsafeUnpin for PermissionDecisionApproveForLocation
impl UnwindSafe for PermissionDecisionApproveForLocation
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