pub struct ApplyPatchApprovalParams {
pub call_id: String,
pub conversation_id: ThreadId,
pub file_changes: BTreeMap<String, FileChange>,
pub grant_root: Option<String>,
pub reason: Option<String>,
}Fields§
§call_id: String§conversation_id: ThreadId§file_changes: BTreeMap<String, FileChange>§grant_root: Option<String>§reason: Option<String>Trait Implementations§
Source§impl Clone for ApplyPatchApprovalParams
impl Clone for ApplyPatchApprovalParams
Source§fn clone(&self) -> ApplyPatchApprovalParams
fn clone(&self) -> ApplyPatchApprovalParams
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 ApplyPatchApprovalParams
impl Debug for ApplyPatchApprovalParams
Source§impl<'de> Deserialize<'de> for ApplyPatchApprovalParams
impl<'de> Deserialize<'de> for ApplyPatchApprovalParams
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 ApplyPatchApprovalParams
impl PartialEq for ApplyPatchApprovalParams
Source§fn eq(&self, other: &ApplyPatchApprovalParams) -> bool
fn eq(&self, other: &ApplyPatchApprovalParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApplyPatchApprovalParams
impl Serialize for ApplyPatchApprovalParams
impl StructuralPartialEq for ApplyPatchApprovalParams
Auto Trait Implementations§
impl Freeze for ApplyPatchApprovalParams
impl RefUnwindSafe for ApplyPatchApprovalParams
impl Send for ApplyPatchApprovalParams
impl Sync for ApplyPatchApprovalParams
impl Unpin for ApplyPatchApprovalParams
impl UnsafeUnpin for ApplyPatchApprovalParams
impl UnwindSafe for ApplyPatchApprovalParams
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