pub struct ApprovalRequestPatch {
pub redacted_summary: String,
}Expand description
Describes the approval request patch portion of a runtime package snapshot. Use it when package authors or tests need explicit package configuration; validation and activation happen in package/runtime coordinators.
Fields§
§redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
Trait Implementations§
Source§impl Clone for ApprovalRequestPatch
impl Clone for ApprovalRequestPatch
Source§fn clone(&self) -> ApprovalRequestPatch
fn clone(&self) -> ApprovalRequestPatch
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 ApprovalRequestPatch
impl Debug for ApprovalRequestPatch
Source§impl<'de> Deserialize<'de> for ApprovalRequestPatch
impl<'de> Deserialize<'de> for ApprovalRequestPatch
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
Source§impl PartialEq for ApprovalRequestPatch
impl PartialEq for ApprovalRequestPatch
Source§fn eq(&self, other: &ApprovalRequestPatch) -> bool
fn eq(&self, other: &ApprovalRequestPatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApprovalRequestPatch
impl Serialize for ApprovalRequestPatch
impl Eq for ApprovalRequestPatch
impl StructuralPartialEq for ApprovalRequestPatch
Auto Trait Implementations§
impl Freeze for ApprovalRequestPatch
impl RefUnwindSafe for ApprovalRequestPatch
impl Send for ApprovalRequestPatch
impl Sync for ApprovalRequestPatch
impl Unpin for ApprovalRequestPatch
impl UnsafeUnpin for ApprovalRequestPatch
impl UnwindSafe for ApprovalRequestPatch
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