pub struct FileDeleteResponse {
pub commit: Option<FileCommitResponse>,
pub content: Option<Value>,
pub verification: Option<PayloadCommitVerification>,
}Expand description
FileDeleteResponse contains information about a repo’s file that was deleted
Fields§
§commit: Option<FileCommitResponse>§content: Option<Value>§verification: Option<PayloadCommitVerification>Trait Implementations§
Source§impl Clone for FileDeleteResponse
impl Clone for FileDeleteResponse
Source§fn clone(&self) -> FileDeleteResponse
fn clone(&self) -> FileDeleteResponse
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 FileDeleteResponse
impl Debug for FileDeleteResponse
Source§impl<'de> Deserialize<'de> for FileDeleteResponse
impl<'de> Deserialize<'de> for FileDeleteResponse
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 FromResponse for FileDeleteResponse
impl FromResponse for FileDeleteResponse
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for FileDeleteResponse
impl PartialEq for FileDeleteResponse
Source§impl Serialize for FileDeleteResponse
impl Serialize for FileDeleteResponse
impl StructuralPartialEq for FileDeleteResponse
Auto Trait Implementations§
impl Freeze for FileDeleteResponse
impl RefUnwindSafe for FileDeleteResponse
impl Send for FileDeleteResponse
impl Sync for FileDeleteResponse
impl Unpin for FileDeleteResponse
impl UnwindSafe for FileDeleteResponse
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