pub struct FileDeleteResponse {
pub commit: Option<Box<FileCommitResponse>>,
pub content: Option<Value>,
pub verification: Option<Box<PayloadCommitVerification>>,
}
Expand description
FileDeleteResponse : FileDeleteResponse contains information about a repo’s file that was deleted
Fields§
§commit: Option<Box<FileCommitResponse>>
§content: Option<Value>
§verification: Option<Box<PayloadCommitVerification>>
Implementations§
Source§impl FileDeleteResponse
impl FileDeleteResponse
Sourcepub fn new() -> FileDeleteResponse
pub fn new() -> FileDeleteResponse
FileDeleteResponse contains information about a repo’s file that was deleted
Trait Implementations§
Source§impl Clone for FileDeleteResponse
impl Clone for FileDeleteResponse
Source§fn clone(&self) -> FileDeleteResponse
fn clone(&self) -> FileDeleteResponse
Returns a copy 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 Default for FileDeleteResponse
impl Default for FileDeleteResponse
Source§fn default() -> FileDeleteResponse
fn default() -> FileDeleteResponse
Returns the “default value” for a type. Read more
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 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